should I docker? ◦ Core concepts ◦ Containers and images • Dockerfile • Docker-Compose Break • Live Demo/ Hands On: Learning Docker together wit Bday #Labs 2
Docker to eliminate “works on my machine” problems when collaborating on code with co-workers. Operators: use Docker to run and manage apps side-by-side in isolated containers to get better compute density. Enterprises: use Docker to build agile software delivery pipelines to ship new features faster, more securely and with confidence for both Linux and Windows Server apps. What is Docker?
using the same Docker-Image, • Docker-Store contains some good basic images: ◦ Nginx, ◦ Node.JS, ◦ MySQL, • Containers are isolated from the Host and any other Containers: ◦ You can decide what to share: ▪ Ports, ▪ Volumes (for persistent data (for database containers)), ▪ networks, 10