-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
126 lines (104 loc) · 3.59 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html>
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet" type="text/css"/>
<title>
About Docker for Education
</title>
</head>
<body>
<div style="text-align:center">
<figure class="logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Docker_%28container_engine%29_logo.svg/1920px-Docker_%28container_engine%29_logo.svg.png" width="20%">
</figure>
</div>
<ul class="menu">
<li>
<a href="index.html">HOME</a>
</li>
<li>
<a href="flask.html">APPLICATIONS</a>
</li>
<li>
<a href="about.html">ABOUT</a>
</li>
</ul>
<h1>
About Docker for Education
</h1>
<p>
This is a project of the NYU Tandon DevOps
class.
</p>
<p>
Participants include:
</p>
<ul>
<li>
Zhuolun Li
</li>
<li>
Xinchao Min
</li>
<li>
Neel Chauhan
</li>
</ul>
<p>
Here are some knnowledge we get helping us to use docker
projects better.
</p>
<p>
<a href="https://runnable.com/docker/python/dockerize-your-flask-application">
How to dockerize a Flask application.</a>
</p>
<p>
<a href="http://containertutorials.com/docker-compose/flask-simple-app.html">
Dockerize Simple Flask App.</a>
</p>
<p>
<a href="https://docs.docker.com/docker-hub/builds/automated-testing/">
How to Set up automated test files.</a>
</p>
<p>
<a href="https://www.docker.com/sites/default/files/products/Solution_Brief_Tutum.pdf">
Deploy and Manage Dockerized Distributed Applications.</a>
</p>
<p>
<a href="https://stackoverflow.com/questions/35770135/using-docker-to-run-a-distributed-computation">
Using docker to run a distributed computation.</a>
</p>
<p>
<a href="https://www.oreilly.com/library/view/distributed-computing-with/9781787125384/ad1c0d8c-8ae0-4b35-8162-19f63b0eabac.xhtml">
Understanding Docker - Distribued Computing with Go.</a>
</p>
<p>
<a href="https://www.ics.uci.edu/~aburtsev/143A/hw/xv6-setup.html">
Instructions for building xv6 on Openlab (circinus) servers.</a>
</p>
<p>
<a href="https://bigdata-madesimple.com/docker-use-cases-how-to-handle-big-data-with-docker/">
How to handle big data with Docker.</a>
</p>
<p>
<a href="https://en.wikipedia.org/wiki/List_of_distributed_computing_projects">
List of distributed computing.</a>
</p>
<p>
<a href="https://www.voltdb.com/blog/2014/12/15/docker-simplifies-distributed-systems-development-voltdb/">
How Docker Simplifies Distributed Systems Development.</a>
</p>
<p>
<a href="https://spring.io/guides/topicals/spring-boot-docker/">
Topical Guide to Spring Boot Docker.</a>
</p>
<p>
<a href="http://www.youtube.com/watch?v=lIp2nrOnKFs">
Here's a video for DockerComp.</a>
</p>
<p>
<a href="https://thenewstack.io/what-makes-docker-so-important/">
Why docker is important.</a>
</p>
</body>
</html>