Docker Introduction
Topics
- What is and Why Docker?
- Docker ecosystem
- VMs vs Containers
- Docker architecture
What is and Why Docker?
What is Docker?
Why Docker?
Docker Ecosystem
Virtual Machines(VMs) vs Containers
VM vs Containers
Docker Architecture
What makes up Docker?
- Images
- The file system and configuration of our application which are used to create containers
- The file system and configuration of our application which are used to create containers
- Containers
- Running instances of Docker images - containers run the actual applications
- Running instances of Docker images - containers run the actual applications
- Docker daemon
- The background service running on the host that manages building, running and distributing Docker containers
- The background service running on the host that manages building, running and distributing Docker containers
- Docker client
- Command line tool that allows the user to interact with the Docker daemon
- Command line tool that allows the user to interact with the Docker daemon
- Docker Hub
- A registry of Docker images
- A registry of Docker images