-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
213 lines (144 loc) · 3.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html>
<head>
<title>Docker+Kubernetes Training</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono);
@import url(https://fonts.googleapis.com/css?family=Cutive+Mono:400,700,400italic);
body {
font-family: 'Ubuntu Mono';
color: white;
}
h1, h2, h3 {
font-family: 'Ubuntu Mono';
font-weight: normal;
color: white;
}
.remark-code, .remark-inline-code { font-family: 'Cutive Mono'; }
</style>
</head>
<body>
<textarea id="source">
layout: true
class: middle
background-image: url(https://raw.githubusercontent.com/propel-ventures/docker-kubernetes-training/main/img/propel-background.png)
background-size: contain
---
# Docker+Kubernetes Training
## June 2021
---
# Week 1
1. Introduction(s)
2. Course Schedule
3. Course Breakdown
4. Homework for next week
???
Slide notes go here
---
# Introductions
![](https://raw.githubusercontent.com/propel-ventures/docker-kubernetes-training/main/img/hi.gif)
---
# Course Schedule
1. Local Docker Install
2. Docker CLI First Steps
3. Dockerfile
4. Docker Hello World
5. Docker Hub/ECR
6. Docker Hygiene
7. Docker + CI/CD
8. Docker Network (local clustering)
9. Docker Compose
10. Docker vs Kubernetes
11. Local Kubernetes Install
12. Kubectl CLI First Steps
13. Kubernetes Dashboard
14. Deployment YAML
15. Kubernetes Hello World
16. Kubernetes Workloads
17. Kubernetes Hello Cluster
18. Kubernetes Maintenance
19. MYOB's Kubernetes Cluster Solution - Jupiter
[NOTE]: Weekly sessions won't line up - this won't be a 19 week course (hopefully 6-8 weeks)
---
### 1. Local Docker Install
- Install docker: https://docs.docker.com/engine/install/
- Verify its running: `docker version`
![](https://raw.githubusercontent.com/propel-ventures/docker-kubernetes-training/main/img/docker-version-sm.png)
---
### 2. Docker CLI First Steps
- `docker run hello-world`
- `docker pull alpine`
- listing your images
- running an interactive shell
- sustaining an image in the background
- listing your running containers
- running a command on a background image
- `docker info`
- killing a container
- stopping your engine (homework)
???
g docker ~/work/hist/*|sed -e 's/^.*txt: [0-9][0-9][0-9]//'|egrep -v '(hist)'|sort -u
---
### 3. Dockerfile
- its a file, called Dockerfile. no extension
- dockerfile commands
- FROM and layering
---
### 4. Docker Hello World
- webapp on docker (dotnet, no local)
- specifying a port
- finding the ip address
---
### 5. Docker Hub/ECR
- create an account on docker hub
- push
- tag
---
### 6. Docker Hygiene
- pruning
- rm
---
### 7. Docker + CI/CD
- pipelines
- docker-on-docker
---
### 8. Docker Network (local clustering)
- nginx reverse proxy + webapp + api
---
### 9. Docker Compose
---
### 10. Docker vs Kubernetes
---
### 11. Local Kubernetes Install
---
### 12. Kubectl CLI First Steps
---
### 13. Kubernetes Dashboard
---
### 14. Deployment YAML
---
### 15. Kubernetes Hello World
---
### 16. Kubernetes Workloads
---
### 17. Kubernetes Hello Cluster
---
### 18. Kubernetes Maintenance
---
### 19. MYOB's Kubernetes Cluster Solution - Jupiter
---
# 'Homework' for Session 2
- get docker engine installed on your local machine
- respond to the post-session-1 homework post
- post a screenshot of your `docker version`
- help out anyone who needs it
- see you then!
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript">
</script>
<script type="text/javascript">
var slideshow = remark.create();
</script>
</body>
</html>