Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.55 KB

README.md

File metadata and controls

38 lines (28 loc) · 1.55 KB

Review Assignment Due Date

docker-deep-dive-2024

Docker deep dive workbook

Welcome to your Docker deep dive course. You will find exercises and follow up questions in here. The course will work best if we follow it through together so if you can curb your excitement for reading ahead.

Helpful tips & references

Building an image For a basic build, adapt this command to match the exercise docker build -t docker-deep-dive/{exercise}/{original|better} -f {filename} .

e.g.

docker build -t docker-deep-dive/ex2/original -f Dockerfile.original .

Listing your built images

docker images
docker images | grep docker-deep-dive/

Running up your images into containers

The basic command would be

docker run --name exercise2 --rm docker-deep-dive/ex2/original

However, different types of dockerfile & image may prompt more complex versions (spoilers!)