Docker was founded an Open Source project in 2013 as a way to provide extremely light weight Linux containers.
In 2015, Docker formed the Open Container Initiative as a means to provide open source governance to the spread of Linux containers.
Docker was founded an Open Source project in 2013 as a way to provide extremely light weight Linux containers.
In 2015, Docker formed the Open Container Initiative as a means to provide open source governance to the spread of Linux containers.
Docker (and Linux container technologies) are seeing widespread adoption across the inudstry and are used heavily in Cloud Native applications.
"A Linux® container is a set of processes that are isolated from the rest of the system, running from a distinct image that provides all files necessary to support the processes."
"A Linux® container is a set of processes that are isolated from the rest of the system, running from a distinct image that provides all files necessary to support the processes."
"A Linux® container is a set of processes that are isolated from the rest of the system, running from a distinct image that provides all files necessary to support the processes."
Essentially, a Linux container is a standalone Linux machine that is running on top of an existing Linux OS.
Docker gets some of its magic from using a Union file systems, UnionFS, which operates by creating layers.
You have a CentOS EC2 Instance runnning on AWS with Docker installed.
You have a CentOS EC2 Instance runnning on AWS with Docker installed.
This allows you to spin up a PostGIS container.
You have a CentOS EC2 Instance runnning on AWS with Docker installed.
This allows you to spin up a PostGIS container.
You have a CentOS EC2 Instance runnning on AWS with Docker installed.
This allows you to spin up a PostGIS container.
You have a CentOS EC2 Instance runnning on AWS with Docker installed.
This allows you to spin up a PostGIS container.
You would also have the ability to spin up other images:
You would also have the ability to spin up other images:
You would also have the ability to spin up other images:
You would also have the ability to spin up other images:
You would also have the ability to spin up other images:
Immutability. Create once, then throw away.
No install setups. Anyone can easily have the exact same setup running in prod.
UnionFS uses layers to provide copy on write storage.
UnionFS excels when you assume that most files in a file system remain unchanged.
Imagine you have 10 CentOS containers running on your machine. Here is what you know is true:
Imagine you have 10 CentOS containers running on your machine. Here is what you know is true:
Imagine you have 10 CentOS containers running on your machine. Here is what you know is true:
Each CentOS container is looking at the exact same files in their virtual filesystem.
Container A writes a new file to the /home
directory. Container A writes a new layer to the virtual filesystem.
Imagine you have 10 CentOS containers running on your machine. Here is what you know is true:
Each CentOS container is looking at the exact same files in their virtual filesystem.
Container A writes a new file to the /home
directory. Container A writes a new layer to the virtual filesystem.
Only Container A sees the new layer. The rest of the containers remain looking at the base image file system.
docker build
"prebakes" your Dockerfile as an image so that it can be spun up quickly. docker build
"prebakes" your Dockerfile as an image so that it can be spun up quickly. docker run
creates a Linux container based on your image.Dockerfile
is the blue print for the Image that is used to create a container.
# the base imageFROM centos:7# install commandsRUN yum -y updateRUN rpm -ivh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm# specify the port to be exposedEXPOSE 8080# run the applicationCMD["python", "-m SimpleHTTPServer"]
docker build
runs the Dockerfile and "prebakes" an image.
$ docker build --tag example .Sending build context to Docker daemon 68.61kBStep 1/4 : FROM centos:77: Pulling from library/centosaf4b0a2388c6: Pull complete Digest: sha256:6247c7082d4c86c61b00f7f2e3edbf7f072a24aa8edc28b5b68b3de3101bc1ceStatus: Downloaded newer image for centos:7 ---> ff426288ea90 Step 2/4 : RUN yum -y update ...
$ docker imagesREPOSITORY TAG IMAGE ID CREATED SIZEexample latest 6bb88ddf2b57 4 minutes ago 374MB
docker run
starts up a container of the specified image
$ docker run -i -t example[root@f91976ba8452 /]# [root@f91976ba8452 /]# lsanaconda-post.log bin dev etc home lib lib64 media mnt opt proc root run sbin srv sys tmp usr var
$ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMESf91976ba8452 example "/bin/bash" About a minute ago Exited (0) 8 seconds ago amazing_brown
Docker provides fresh machine everytime.
Setup is entirely scripted.
Docker provides fresh machine everytime.
Setup is entirely scripted.
Docker provides fresh machine everytime.
Setup is entirely scripted.
Docker provides fresh machine everytime.
Setup is entirely scripted.
What if you need to set environment variables for your app?
What if you're working locally and you want the container to run the local version of your code?
-e VAR=VALUE
format on the docker run
command.docker run -e PORT=80 some_image
--mount
command to have a file inside of the container write directly through to a host file.docker run --mount type=bind,source="$(pwd)"/build/libs,\target=/app
{project root}/build/libs
into the container at the /app
directory.Docker Compose allows you to connect multiple docker containers together.
Docker Compose allows you to connect multiple docker containers together.
Docker Compose allows you to connect multiple docker containers together.
Docker Compose uses a config file to manipulate Docker's built in networking capabilities.
Docker Compose allows you to spin up entire applications and not just individual machines
This a docker-compose.yml
version: "2"services: es: image: elasticsearch web: image: prakhar1989/foodtrucks-web command: python app.py ports: - "5000:5000"
docker-compose.yml
version: "3.3"services: # list all of the containers web: image: prakhar1989/foodtrucks-web command: python app.py ports: - "5000:5000"
is equivalent to
$ docker run -p 5000:5000 example-image python.app.py
The CMD line in your Dockerfile indicates the one process that should be running.
The container should only have one responsibility, one main job.
The CMD line in your Dockerfile indicates the one process that should be running.
The container should only have one responsibility, one main job.
Using Docker Compose multiple Docker containers can be linked together (i.e. web app container and a database container).:
All of the container setup is scripted in the Dockerfile.
Immutability means a consistently known state. Update the Dockerfile, throw away all of your containers and spin up new ones.
mount
flag to write or reference directly to the host machine. mount
flag to write or reference directly to the host machine. There are several commands you need to know:
docker build
- creates an image based on a Dockerfiledocker run
- creates a container based on an imagedocker images
- lists all available imagesdocker stop
- turns off a containerdocker rm
- deletes an imagesudo docker exec -i -t docker_id /bin/bash
- jump in shell of existing serverdocker --help
- look up all of the commands you don't knowdocker build
Options
docker build --tag someName
- specifies "someName" as the name of your image.docker build
Options
docker build --tag someName
- specifies "someName" as the name of your image.Other useful commands:
docker images
- lists all images currently on your machine.docker rmi someName
- deletes the image named "someName"docker run
Options
docker run someName
- Create a container from the someName image.
docker run
Options
docker run someName
- Create a container from the someName image.
docker run -i -t someName
- Start a container with the terminal as the main process
docker run
Options
docker run someName
- Create a container from the someName image.
docker run -i -t someName
- Start a container with the terminal as the main process
docker run -p 80:8080 someName
- Publish port 8080 of the container on port 80 of 127.0.0.1 (the machine running Docker)
docker run
Options
docker run someName
- Create a container from the someName image.
docker run -i -t someName
- Start a container with the terminal as the main process
docker run -p 80:8080 someName
- Publish port 8080 of the container on port 80 of 127.0.0.1 (the machine running Docker)
docker run --name myContainer someName
- Create a container named "myContainer"
docker ps
- list all running containers
docker ps
- list all running containers
docker ps -a
- list all containers
docker ps
- list all running containers
docker ps -a
- list all containers
docker stop someName
- stop the container named "someName"
docker ps
- list all running containers
docker ps -a
- list all containers
docker stop someName
- stop the container named "someName"
docker rm someName
- delete the container named "someName"
docker ps
- list all running containers
docker ps -a
- list all containers
docker stop someName
- stop the container named "someName"
docker rm someName
- delete the container named "someName"
docker logs someName
- view all of the written to STDOUT for "someName"
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |