title | keywords | description | redirect_from | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Orientation and setup |
get started, setup, orientation, quickstart, intro, concepts, containers, docker desktop |
Get oriented on some basics of Docker and install Docker Desktop. |
|
{% include_relative nav.html selected="1" %}
Welcome! We are excited that you want to learn Docker. The Docker Community QuickStart teaches you how to:
- Set up your Docker environment (on this page)
- Build an image and run it as one container
- Set up and use a Kubernetes environment on your development machine
- Set up and use a Swarm environment on your development machine
- Share your containerized applications on Docker Hub
Docker is a platform for developers and sysadmins to build, share, and run applications with containers. The use of containers to deploy applications is called containerization. Containers are not new, but their use for easily deploying applications is.
Containerization is increasingly popular because containers are:
- Flexible: Even the most complex applications can be containerized.
- Lightweight: Containers leverage and share the host kernel, making them much more efficient in terms of system resources than virtual machines.
- Portable: You can build locally, deploy to the cloud, and run anywhere.
- Loosely coupled: Containers are highly self sufficient and encapsulated, allowing you to replace or upgrade one without disrupting others.
- Scalable: You can increase and automatically distribute container replicas across a datacenter.
- Secure: Containers apply aggressive constraints and isolations to processes without any configuration required on the part of the user.
Fundamentally, a container is nothing but a running process, with some added encapsulation features applied to it in order to keep it isolated from the host and from other containers. One of the most important aspects of container isolation is that each container interacts with its own, private filesystem; this filesystem is provided by a Docker image. An image includes everything needed to run an application -- the code or binary, runtimes, dependencies, and any other filesystem objects required.
A container runs natively on Linux and shares the kernel of the host machine with other containers. It runs a discrete process, taking no more memory than any other executable, making it lightweight.
By contrast, a virtual machine (VM) runs a full-blown "guest" operating system with virtual access to host resources through a hypervisor. In general, VMs incur a lot of overhead beyond what is being consumed by your application logic.
{:width="300px"} | {:width="300px"}
The portability and reproducibility of a containerized process mean we have an opportunity to move and scale our containerized applications across clouds and datacenters; containers effectively guarantee that those applications will run the same way anywhere, allowing us to quickly and easily take advantage of all these environments. Furthermore, as we scale our applications up, we'll want some tooling to help automate the maintenance of those applications, able to replace failed containers automatically and manage the rollout of updates and reconfigurations of those containers during their lifecycle.
Tools to manage, scale, and maintain containerized applications are called orchestrators, and the most common examples of these are Kubernetes and Docker Swarm. Development environment deployments of both of these orchestrators are provided by Docker Desktop, which we'll use throughout this guide to create our first orchestrated, containerized application.
The best way to get started developing containerized applications is with Docker Desktop, for OSX or Windows. Docker Desktop will allow you to easily set up Kubernetes or Swarm on your local development machine, so you can use all the features of the orchestrator you're developing applications for right away, no cluster required. Follow the installation instructions appropriate for your operating system:
Docker Desktop will set up Kubernetes for you quickly and easily. Follow the setup and validation instructions appropriate for your operating system:
-
After installing Docker Desktop, you should see a Docker icon in your menu bar. Click on it, and navigate Preferences... -> Kubernetes.
-
Check the checkbox labeled Enable Kubernetes, and click Apply. Docker Desktop will automatically set up Kubernetes for you. You'll know everything has completed successfully once you can click on the Docker icon in the menu bar, and see a green light beside 'Kubernetes is Running'.
-
In order to confirm that Kubernetes is up and running, create a text file called
pod.yaml
with the following content:apiVersion: v1 kind: Pod metadata: name: demo spec: containers: - name: testpod image: alpine:3.5 command: ["ping", "8.8.8.8"]
This describes a pod with a single container, isolating a simple ping to 8.8.8.8.
-
In a terminal, navigate to where you created
pod.yaml
and create your pod:kubectl apply -f pod.yaml
-
Check that your pod is up and running:
kubectl get pods
You should see something like:
NAME READY STATUS RESTARTS AGE demo 1/1 Running 0 4s
-
Check that you get the logs you'd expect for a ping process:
kubectl logs demo
You should see the output of a healthy ping process:
PING 8.8.8.8 (8.8.8.8): 56 data bytes 64 bytes from 8.8.8.8: seq=0 ttl=37 time=21.393 ms 64 bytes from 8.8.8.8: seq=1 ttl=37 time=15.320 ms 64 bytes from 8.8.8.8: seq=2 ttl=37 time=11.111 ms ...
-
Finally, tear down your test pod:
kubectl delete -f pod.yaml
{% endcapture %} {{ local-content | markdownify }}
-
After installing Docker Desktop, you should see a Docker icon in your system tray. Right-click on it, and navigate Settings -> Kubernetes.
-
Check the checkbox labeled Enable Kubernetes, and click Apply. Docker Desktop will automatically set up Kubernetes for you. Note this can take a significant amount of time (20 minutes). You'll know everything has completed successfully once you can right-click on the Docker icon in the menu bar, click Settings, and see a green light beside 'Kubernetes is running'.
-
In order to confirm that Kubernetes is up and running, create a text file called
pod.yaml
with the following content:apiVersion: v1 kind: Pod metadata: name: demo spec: containers: - name: testpod image: alpine:3.5 command: ["ping", "8.8.8.8"]
This describes a pod with a single container, isolating a simple ping to 8.8.8.8.
-
In powershell, navigate to where you created
pod.yaml
and create your pod:kubectl apply -f pod.yaml
-
Check that your pod is up and running:
kubectl get pods
You should see something like:
NAME READY STATUS RESTARTS AGE demo 1/1 Running 0 4s
-
Check that you get the logs you'd expect for a ping process:
kubectl logs demo
You should see the output of a healthy ping process:
PING 8.8.8.8 (8.8.8.8): 56 data bytes 64 bytes from 8.8.8.8: seq=0 ttl=37 time=21.393 ms 64 bytes from 8.8.8.8: seq=1 ttl=37 time=15.320 ms 64 bytes from 8.8.8.8: seq=2 ttl=37 time=11.111 ms ...
-
Finally, tear down your test pod:
kubectl delete -f pod.yaml
{% endcapture %} {{ localwin-content | markdownify }}
Docker Desktop runs primarily on Docker Engine, which has everything you need to run a Swarm built in. Follow the setup and validation instructions appropriate for your operating system:
-
Open a terminal, and initialize Docker Swarm mode:
docker swarm init
If all goes well, you should see a message similar to the following:
Swarm initialized: current node (tjjggogqpnpj2phbfbz8jd5oq) is now a manager. To add a worker to this swarm, run the following command: docker swarm join --token SWMTKN-1-3e0hh0jd5t4yjg209f4g5qpowbsczfahv2dea9a1ay2l8787cf-2h4ly330d0j917ocvzw30j5x9 192.168.65.3:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions.
-
Run a simple Docker service that uses an alpine-based filesystem, and isolates a ping to 8.8.8.8:
docker service create --name demo alpine:3.5 ping 8.8.8.8
-
Check that your service created one running container:
docker service ps demo
You should see something like:
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS 463j2s3y4b5o demo.1 alpine:3.5 docker-desktop Running Running 8 seconds ago
-
Check that you get the logs you'd expect for a ping process:
docker service logs demo
You should see the output of a healthy ping process:
demo.1.463j2s3y4b5o@docker-desktop | PING 8.8.8.8 (8.8.8.8): 56 data bytes demo.1.463j2s3y4b5o@docker-desktop | 64 bytes from 8.8.8.8: seq=0 ttl=37 time=13.005 ms demo.1.463j2s3y4b5o@docker-desktop | 64 bytes from 8.8.8.8: seq=1 ttl=37 time=13.847 ms demo.1.463j2s3y4b5o@docker-desktop | 64 bytes from 8.8.8.8: seq=2 ttl=37 time=41.296 ms ...
-
Finally, tear down your test service:
docker service rm demo
{% endcapture %} {{ local-content | markdownify }}
-
Open a powershell, and initialize Docker Swarm mode:
docker swarm init
If all goes well, you should see a message similar to the following:
Swarm initialized: current node (tjjggogqpnpj2phbfbz8jd5oq) is now a manager. To add a worker to this swarm, run the following command: docker swarm join --token SWMTKN-1-3e0hh0jd5t4yjg209f4g5qpowbsczfahv2dea9a1ay2l8787cf-2h4ly330d0j917ocvzw30j5x9 192.168.65.3:2377 To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions.
-
Run a simple Docker service that uses an alpine-based filesystem, and isolates a ping to 8.8.8.8:
docker service create --name demo alpine:3.5 ping 8.8.8.8
-
Check that your service created one running container:
docker service ps demo
You should see something like:
ID NAME IMAGE NODE DESIRED STATE CURRENT STATE ERROR PORTS 463j2s3y4b5o demo.1 alpine:3.5 docker-desktop Running Running 8 seconds ago
-
Check that you get the logs you'd expect for a ping process:
docker service logs demo
You should see the output of a healthy ping process:
demo.1.463j2s3y4b5o@docker-desktop | PING 8.8.8.8 (8.8.8.8): 56 data bytes demo.1.463j2s3y4b5o@docker-desktop | 64 bytes from 8.8.8.8: seq=0 ttl=37 time=13.005 ms demo.1.463j2s3y4b5o@docker-desktop | 64 bytes from 8.8.8.8: seq=1 ttl=37 time=13.847 ms demo.1.463j2s3y4b5o@docker-desktop | 64 bytes from 8.8.8.8: seq=2 ttl=37 time=41.296 ms ...
-
Finally, tear down your test service:
docker service rm demo
{% endcapture %} {{ localwin-content | markdownify }}
At this point, you've installed Docker Desktop on your development machine, and confirmed that you can run simple containerized workloads in Kubernetes and Swarm. In the next section, we'll start developing our first containerized application.
On to Part 2 >>{: class="button outline-btn" style="margin-bottom: 30px; margin-right: 100%"}
Further documentation for all CLI commands used in this article are available here: