僕が個人的に神と崇める、maximilianさんの講座の復習として、内容を要約します。
主に自分の復習用として、記載しています。
Images and Containers
- Image
- Blueprint for containers
- its consist of our code and environment
- multiple layers
- read-only
- types of Image
- pre-built image ex) docker-hub
- custom image
- Blueprint for containers
- Containers
- multiple containers are created by one Image
- Read-write
- multiple containers are created by one Image
- Image Commands
- docker tag
- docker images / listing
- docker iamge inspect / analyzing
- docker rmi / removing
- docker push/pull
- docker build / making a new Image beased on dockerfile
- Containers commands
- docker ps / listing
- dokcer rm / removing
- docker create / making a new containers
- docker run / making a new containers based on Image
- docker start/stop