-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (55 loc) · 2.69 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="/assets/css/bootstrap.css">
<link rel="stylesheet" href="/assets/css/global.css">
<link rel="stylesheet" href="/assets/css/jquery.terminal.css">
<link rel="stylesheet" href="/assets/css/docker-terminal.css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65736139-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header>
<div class="header-wrapper">
<ol><li><a href="/" style="padding-right: 30px">Dockersim.com</a></li>
<li>Lessons: </li>
<li><a href="/lessons/1-install.html">Install</a></li>
<li>></li>
<li><a href="/lessons/2-images.html">Images</a></li>
<li>></li>
<li><a href="/lessons/3-containers.html">Containers</a></li>
<li>></li>
<li><a href="/lessons/4-dockerfiles.html">Dockerfiles</a></li>
<li>></li>
<li><a href="/lessons/5-run.html">Run container run!</a></li>
</ol>
</div>
</header>
<main>
<div class="home-wrapper">
<p>This site will introduce you to Docker, how it works, and how to use it. </p>
<p>In a simulated terminal, we'll show you the commands you need to get your own containers up and running.</p>
<h3>So, what is Docker?</h5>
<p>With Docker, you can create pre-packaged operating systems for running your software. These pre-packaged environments are called <i>containers</i>, and containers are the same wherever they go. </p>
<p>This means that when moving your application from, say, staging to production, you can be confident that everything will work because the production and staging servers are literally the same.</p>
<h3>How to use Dockersim.com</h5>
<p>This site is designed to show you how to use Docker in a few simple steps, before you go diving into setting up your own Docker server.</p>
<p>It shouldn't take more than 15 minutes.</p>
<p class="next-lesson"><a href="/lessons/1-install.html">Ready? Lesson 1 - Install Docker</a></p>
</div>
</main>
<footer>
<div class="footer-wrapper">
<p class="footer-left"><a href="mailto:[email protected]">[email protected]</a></p>
<p class="footer-right"><a href="https://github.com/otakumike/">GitHub</a></p>
</div>
</footer>
<script src="/assets/js/jquery-1.7.1.min.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
</body>
</html>