-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker_info.html
44 lines (38 loc) · 1.1 KB
/
docker_info.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet" type="text/css"/>
<title>
Short and Sweet Guide to Docker
</title>
</head>
<body>
<h1>
Short and Sweet Guide to Docker
</h1>
<p>
This is intended as a very minimal guide to Docker.
<br>
Here are the resources we feel will be most useful to you in our
classes and projects:
</p>
<ul>
<li>
<a href="https://github.com/gcallah/utils/blob/master/docker/Dockerfile">
Here
</a>
is what you need to add container
for running tests and flake8.
</li>
</ul>
<ul>
<li>
<a href="https://github.com/gcallah/utils/blob/master/docker/requirements.txt">
Here
</a>
are the requirements needed for running the above.
</li>
</ul>
</body>
</html>