Sharing Images
- Docker makes it very easy to share images
- Good way to play around with some development software
- Many images are hosted on Docker Hub
- Trying a new database is as easy as
docker run -e POSTGRES_PASSWORD=mysecretpassword -p "5432:5432" postgres
- Makes it easy to make sure the same code goes to each environment (just deploy images)
10 / 14