-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.txt
More file actions
30 lines (24 loc) · 787 Bytes
/
notes.txt
File metadata and controls
30 lines (24 loc) · 787 Bytes
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
run docker to show possible command and demonstrate --help
docs.docker.com
Find apache httpd on hub (mention offical images)
run httpd - attached, no volume mounts
run httpd - detached, no volume mounts
docker ps
docker stop
run httpd - volume mount
run httpd - host fs volume mount
Exercise php version
Building custom image
show how to run python app locally (do in Dockerfile)
find python on hub - show building instructions
Convert command in Dockerfile to commands
docker build
docker run
docker push to hub in bluefruit namespace
Exercise build cpp application
docker images to see the size of the image
Add docker-compose.yml to codify parameters
docker-compose up
Add redis to python app
add second service
Multistage build and adding cpp application into python container