Sharing Images
- Docker makes it very easy to share images
- Many images are hosted on Docker Hub
- First up, make sure you're logged in
- Next, build your image with
docker build . - Next up, tag your image with a version using
docker tag - Finally, push your image with
docker push
16 / 24