Slide 11
Slide 11 text
Docker is not a container, but it is a tool that
manages containers for you. Docker will help you:
1. Build images to run as containers. A Docker image is the template;
application plus required binaries and libraries; required to build a
running docker container.
2. Manage containers. A container is a running instance of an image.
3. Manage entire application stack using Docker compose. Docker
compose will help you bring up multiple containers into a network. For
instance, a bunch of related microservices can be brought up at once
using Docker compose.
4. Even more…