Docker

Docker Series #1: Hello Docker

Docker Series #1: Hello Docker
In: Docker, NetDevOps

You've probably come across countless articles online explaining how to get Docker up and running or the nitty-gritty of how it functions. And they do a fantastic job - much better than I could.

But, I'm not here to compete with them. Instead, I want to take you on a different journey. As always, my goal here is to explain what Docker is using plain language and relatable examples, I hope to give you a clear understanding of what Docker is.

So, if you've been searching for a way to grasp Docker without getting tangled in tech talk, you're exactly where you need to be.

What is Docker?

Docker is a tool that simplifies the process of managing and deploying applications in an isolated environment. It allows developers to package an application with all of its dependencies into a standardized unit called a container. This container can then be easily transported and run on any system that has Docker installed, ensuring the application works seamlessly in any environment.

And here's the fun part - with Docker, the old excuse "it works on my computer" goes out the window. With Docker, it's more like, "It works on my computer, your computer, their computer - any computer!"

VM vs Docker

When comparing Docker to Virtual Machines (VMs), think of it like this: VMs are like having separate servers, each with its own full setup, all inside your one physical server. It's like having many full-fledged servers packed into one. Docker, on the other hand, is more efficient. Instead of setting up a whole new server for each app, Docker shares resources of the main system, but keeps the apps separate. It's like having just the necessary parts for each app, making it lighter and faster.

Unlike VMs where you have to manually download large ISO files to create new instances, Docker lets you pull these images from a repository, like Docker Hub, with a simple command such as docker pull ubuntu.

Another key difference is size and startup time. Docker images are usually much smaller than ISO files, so they take up less storage and are quicker to download. Also, starting a Docker container from an image takes just a few seconds as opposed to a VM, which can take a few minutes to boot up.

Docker and VMs: The Housing Analogy

Think of Virtual Machines like detached single-family houses. Each house is fully self-contained with its own infrastructure - plumbing, heating, electrical, etc. The houses don't share these resources with each other. Everyone living inside a house has access to a unique set of utilities. This setup provides complete independence and isolation, but it also requires a significant amount of resources. Just like VMs, each running their separate operating systems and libraries, need a lot of computational power and memory.

Now, let's think of Docker containers as individual apartments in an apartment building. Each apartment is separate, providing isolation for its occupants, much like a Docker container isolates an application and its dependencies. However, unlike a row of houses, the apartments in a building share some infrastructure. The building has one heating system, one water system, and one electrical system, which all apartments tap into. This setup is much more resource-efficient.

In the Docker world, the shared infrastructure is akin to the host system's kernel, which Docker containers use to run applications. While each Docker container bundles its application and its dependencies, they all share the host system's kernel. This makes Docker containers lightweight and fast, allowing you to run many containers on a system without consuming the resources that VMs would.

But, of course, unlike Docker containers, you can't exactly zip up the residents of an apartment, along with their furniture and belongings, and send them off to run perfectly in a different building. And, if you can, well... we need to talk.

Docker Images and Containers

In the Docker world, you'll often hear about "images" and "containers". While they're closely related, they're not the same thing.

Think of a Docker image as a recipe or a blueprint. It's a lightweight, standalone, executable package that includes everything you need to run a piece of software - the code, a runtime, libraries, and config files.

A Docker container, on the other hand, is a running instance of an image. It's the real-world application of the blueprint. You can create as many containers as you like from a single image. Just like you can build multiple houses using the same blueprint, each with its own separate existence.

Basic Docker Commands

Let's have a quick look at some of the basic Docker commands. Now, if you're just starting out, this might seem a bit overwhelming. But don't worry too much about understanding every little detail right now. We'll be exploring each of these commands more in-depth in our upcoming examples section.

  1. docker pull: This is the command to download Docker images from a registry like Docker Hub. For example, docker pull ubuntu will pull the Ubuntu image to your local machine.
  2. docker run: Now that you have your Docker image, you'll want to run it as a container. For example, docker run ubuntu will create a new container from the Ubuntu image and start it.
  3. docker ps: You can use this command to check what Docker containers are currently running on your system. If you want to see all containers (not just the running ones), add the -a flag, docker ps -a.
  4. docker stop: When you're done with a container, you can use docker stop to stop it from running. To stop a container, you'll need to know its ID or name, which you can get from docker ps. For example, docker stop my_container.
  5. docker rm: If you want to remove a container entirely, use docker rm. Be careful, though - you can't undo it, and anything you had stored inside the container will be gone. Like docker stop, you'll need the container's ID or name, docker rm my_container
  6. docker images: This command shows you all the Docker images you've downloaded.
  7. docker rmi: If you want to delete an image that you're not using anymore, you can use docker rmi. Like docker rm, this can't be undone. For example, docker rmi ubuntu.

These are some of the most fundamental Docker commands that you'll use regularly. Of course, Docker has many more commands and options, but these should be enough to get you started on your Docker journey.

Docker Installation

Installing Docker is straightforward, and the good folks at Docker have put together an easy-to-follow guide for various operating systems.

Please follow the official Docker installation guide to get Docker up and running on your machine.

Simple Example

Now that we have installed Docker, one of the simplest ways to understand Docker is to use it to start an interactive Bash shell in a Docker container. This way, you can "enter" the container and interact with it as if it were a small Linux machine. We'll use an Ubuntu image for this example.

1. Pull an Ubuntu Docker Image

Our first step is to get an Ubuntu Docker image. Docker Hub hosts an official Ubuntu image that's perfect for our needs. To pull this image, you'd use the command docker pull ubuntu.

First, let me run docker images to list all the images that are currently on my laptop. I'm using PowerShell Terminal to run the commands, you can also use Command-Line if you prefer.

PS C:\Users\vsurr> docker images
REPOSITORY   TAG       IMAGE ID   CREATED   SIZE

As you can see above, I don't have any images. Let's pull the Ubuntu image and check again.

PS C:\Users\vsurr> docker pull ubuntu
Using default tag: latest
latest: Pulling from library/ubuntu
3153aa388d02: Pull complete
Digest: sha256:0bced47fffa3361afa981854fcabcd4577cd43cebbb808cea2b1f33a3dd7f508
Status: Downloaded newer image for ubuntu:latest
docker.io/library/ubuntu:latest

PS C:\Users\vsurr> docker images
REPOSITORY   TAG       IMAGE ID       CREATED       SIZE
ubuntu       latest    5a81c4b8502e   5 weeks ago   77.8MB

2. Start an Interactive Bash Shell

Now that we have our Ubuntu image, we can start an interactive Bash shell in a Docker container based on this image. To do this, we use the docker run command with a few additional flags: -it. The -i flag starts the container in interactive mode, and the -t flag assigns a terminal inside our new container. We also specify /bin/bash at the end of the command to start a Bash shell. The complete command is docker run -it ubuntu /bin/bash.

PS C:\Users\vsurr> docker run -it ubuntu /bin/bash
root@0cff7573f442:/#

And there you go! You're inside a Docker container running Ubuntu, and you have an interactive Bash shell at your disposal.

While in the container, you can run any command you'd usually run in a Linux environment. For instance, try running ls to list files, or echo "Hello, World!" to print a message to the terminal.

root@0cff7573f442:/# echo "Hello World"
Hello World
root@0cff7573f442:/# ls
bin  boot  dev  etc  home  lib  lib32  lib64  libx32

Remember, whatever you do in this container doesn't affect your host machine. This isolation is one of the many beauties of Docker. When you're done exploring, you can exit the container by typing exit into the shell.

Here's what happens when you type exit to leave your interactive Docker session.

  1. Stopping the Shell Process: When you type exit in the terminal, it sends a signal to stop the Bash shell process that you were interacting with.
  2. Container Shutdown: As Docker containers run as long as the main process they were started with (in this case, the Bash shell), when the Bash process stops, Docker recognizes this and subsequently stops the container.
  3. Container Cleanup: Depending on how you started the container, Docker might also automatically clean up and remove the container from your system after it stops. If you started your Docker container with the --rm flag (as in docker run --rm -it ubuntu /bin/bash), Docker will automatically remove the container once it's stopped. However, if you didn't use the --rm flag, the container will be stopped but not removed. It remains on your system in a 'stopped' state and can be seen with the docker ps -a command.
  4. Return to Host: Once the container stops, you're automatically returned to the command prompt of your host machine. You're no longer inside the Docker container.
root@0cff7573f442:/# exit
exit
PS C:\Users\vsurr>
PS C:\Users\vsurr> docker ps -a
CONTAINER ID   IMAGE     COMMAND       CREATED         STATUS                     PORTS     NAMES
0cff7573f442   ubuntu    "/bin/bash"   4 minutes ago   Exited (0) 5 seconds ago             elastic_bardeen

So, typing exit not only ends your session in the Docker container, but it also sets in motion a sequence of events that leads to the graceful shutdown of the Docker container. This allows you to maintain a clean Docker environment on your machine. Please note that if you run a web-server inside a container for example, and exit from the bash, it won't stop the container as the main process is now the web-server and not bash.

Removing Docker Containers and Images

Once you're done experimenting with your Docker containers, it's good practice to clean up. This helps save resources on your system.

Removing Docker Containers

To remove a stopped Docker container, you first need to find its container ID. You can list all containers (running and stopped) on your system with the command docker ps -a

Look for your container in the list (it'll likely be the one with 'ubuntu' in the image column and 'Exited' in the status column). Note down the container ID.

PS C:\Users\vsurr> docker ps -a
CONTAINER ID   IMAGE     COMMAND       CREATED         STATUS                     PORTS     NAMES
0cff7573f442   ubuntu    "/bin/bash"   4 minutes ago   Exited (0) 5 seconds ago             elastic_bardeen

To remove the container, use the command docker rm <Container-ID>, replacing <Container-ID> with the ID you just noted down.

PS C:\Users\vsurr> docker rm 0cff7573f442
0cff7573f442

Removing Docker Images

To remove the Docker image that was used to create the container, you first need to find its image ID. List all images on your system using the command docker images

PS C:\Users\vsurr> docker images
REPOSITORY   TAG       IMAGE ID       CREATED       SIZE
ubuntu       latest    5a81c4b8502e   5 weeks ago   77.8MB

Look for your image in the list (it'll likely be the one with 'ubuntu' in the repository column). Note down the image ID.

Now, remove the image with the command docker rmi <Image-ID>, replacing <Image-ID> with the ID you noted down.

PS C:\Users\vsurr> docker rmi 5a81c4b8502e
Untagged: ubuntu:latest
Untagged: ubuntu@sha256:0bced47fffa3361afa981854fcabcd4577cd43cebbb808cea2b1f33a3dd7f508
Deleted: sha256:5a81c4b8502e4979e75bd8f91343b95b0d695ab67f241dbed0d1530a35bde1eb
Deleted: sha256:59c56aee1fb4dbaeb334aef06088b49902105d1ea0c15a9e5a2a9ce560fa4c5d

Closing Up

So, we've got Docker running, pulled down an Ubuntu image, and even fired up a bash shell inside a container.

The interesting part? This is just the start. With Docker, you can run pretty much anything. Fancy a web server? Docker's got you. Need a database for your app? Docker can do that too. And the best part - it's all neat and tidy, isolated in its own container.

Written by
Suresh Vina
Tech enthusiast sharing Networking, Cloud & Automation insights. Join me in a welcoming space to learn & grow with simplicity and practicality.
Comments
More from Packetswitch
Table of Contents
Great! You’ve successfully signed up.
Welcome back! You've successfully signed in.
You've successfully subscribed to Packetswitch.
Your link has expired.
Success! Check your email for magic link to sign-in.
Success! Your billing info has been updated.
Your billing was not updated.