Companion code for the Docker Fundamentals blog series.
Each folder corresponds to a post in the series:
| Folder | Post | Description |
|---|---|---|
01-dockerfile-basics/ |
Writing Your First Dockerfile | Dockerfile fundamentals — FROM, COPY, RUN, CMD |
02-multi-stage-builds/ |
Coming soon | Multi-stage builds for smaller images |
03-docker-compose/ |
Coming soon | Docker Compose basics |
git clone https://github.com/jonesrussell/docker-examples.git
cd docker-examples/01-dockerfile-basics
docker build -t hello-docker .
docker run -p 3000:3000 hello-dockerThen open http://localhost:3000 to see it running.
- Docker installed
- Basic terminal/command line knowledge
MIT