Skip to content

theonlytruealex/workshop-docker

 
 

Repository files navigation

Docker Workshop

This is a practical workshop on using Docker for developing and deploying applications.

First of all, fork this repository:

git clone https://github.com/rosedu/workshop-docker
cd workshop-docker/

And let's get going! 🚀

Create a DockerHub Account

Sign up for a DockerHub account. We will use it for exercises below.

Remote VM Access

We are using a remote virtual machine on the NCIT cluster. For that, follow the steps:

  1. Connect to fep.grid.pub.ro:

    ssh <your_upb_username>@fep.grid.pub.ro
  2. Use instructions from instructors to connect to your virtual machine.

  3. You will use the student user. The student user is able to run Docker on the virtual machine. The user also has full access to the system via sudo.

Inspect Docker Instances

Let's start with inspecting the Docker installation and instances on the virtual machine.

Follow the steps below:

  1. See available docker commands:

    docker help
  2. Check the docker version:

    docker version
  3. See information about the docker information:

    docker info
  4. Find out the currently running Docker containers:

    docker ps

    You will the Docker containers that are currently running, namely an Nginx container:

    CONTAINER ID   IMAGE          COMMAND                  CREATED       STATUS          PORTS                                     NAMES
    fbfe1d0b5870   nginx:latest   "/docker-entrypoint.…"   6 hours ago   Up 38 seconds   0.0.0.0:8080->80/tcp, [::]:8080->80/tcp   cdl-nginx
    
  5. Find out all containers, including those that are stopped:

    docker ps -a

    A new container, named ctf-piece_of_pie is now visible:

    CONTAINER ID   IMAGE              COMMAND                  CREATED          STATUS                        PORTS                                     NAMES
    16a526c7c94c   ctf-piece_of_pie   "/usr/local/bin/run.…"   24 minutes ago   Exited (137) 51 seconds ago                                             ctf-piece_of_pie
    fbfe1d0b5870   nginx:latest       "/docker-entrypoint.…"   6 hours ago      Up 40 seconds                 0.0.0.0:8080->80/tcp, [::]:8080->80/tcp   cdl-nginx
    
  6. Find out port-related information to the containers:

    docker port ctf-nginx

    You can see the port forwarding:

    80/tcp -> 0.0.0.0:8080
    80/tcp -> [::]:8080
    

    You can check the current install by querying the server:

    curl localhost:8080

    You will see the default HTML page of Nginx.

  7. Get detailed information about the Docker instances, either started or stopped:

    docker inspect cdl-nginx
    docker inspect ctf-piece_of_pie
  8. Find out of the runtime logging information of the container:

    docker logs cdl-nginx
    docker logs ctf-piece_of_pie
  9. Find out runtime statistics and resource consumption of the running Nginx container:

    docker stats cdl-nginx

    Close the screen by running Ctrl+c three times.

  10. Find out the processes of the running Nginx container:

    docker top cdl-nginx

Do It Yourself

Repeat the steps above, at least 2-3 times.

Interact with Docker Instances

Let's now do actual interaction with Docker container instances. Such as starting and stopping containers, copying files to / from containers, getting a shell inside containers etc.

Follow the steps below:

Starting Instances

Start the ctf-piece_of_pie instance:

docker start ctf-piece_of_pie

Now check it is started:

docker ps

You can see it appears as a started container.

Check the ports and the processes:

docker port ctf-piece_of_pie
docker top ctf-piece_of_pie

Connect locally to test the service:

nc localhost 31337

Stopping Instances

Stop the cdl-nginx instance:

docker stop cdl-nginx

You can see it does not appear as a started container.

Check to see the list of stopped containers:

docker ps -a

Removing Containers

A stopped container can be removed. Once this is done, the container is gone forever. It will have to be re-instantiated if needed, as we'll see in section "Images and Containers".

Remove the cdl-nginx container:

docker rm cdl-nginx

The container is now gone. You can use different commands to see if is gone:

docker ps -a
docker inspect cdl-nginx
docker stats cdl-nginx

Connecting to a Container

You can connect to a container by using docker exec. Typically, you want to start a shell. Start a shell on the ctf-piece_of_pie container by using

docker exec -it ctf-piece_of_pie /bin/bash

More than that, you can run different commands inside the container:

docker exec -it ctf-piece_of_pie ls
docker exec -it ctf-piece_of_pie ls /proc
docker exec -it ctf-piece_of_pie cat /etc/shadow
docker exec -it ctf-piece_of_pie id

Copying Files To / From a Container

You can copy files or entire directories to or from a container. For example, to copy the README.md file to the cdl-nginx container in the root directory, use:

docker cp README.md cdl-nginx:/root/

Likwise, if we wnat to copy the index.html file we use;

docker cp cdl-nginx:/usr/share/nginx/html/index.html .

You can see that the container doesn't need to be running.

Do It Yourself

  1. Copiază fișiere în / din containere.
  2. Oprește toate containere current.

Docker Images

Images are stored locally either by being pulled from a container registry such as DockerHub (see section "Getting Images") or from a Dockefile (see section "Dockerfile).

List the available Docker images by using:

docker image ls

You will get an output such as:

REPOSITORY         TAG        IMAGE ID       CREATED        SIZE
ctf-piece_of_pie   latest     1f844c4f935b   9 hours ago    209MB
<none>             <none>     99ba2c76892a   9 hours ago    216MB
<none>             <none>     e81d4254c928   13 hours ago   209MB
<none>             <none>     2d74afaf7b34   13 hours ago   209MB
debian             bookworm   617f2e89852e   2 weeks ago    117MB
nginx              latest     3b25b682ea82   4 weeks ago    192MB
gcc                14.2       d0b5d902201b   3 months ago   1.42GB

The <none> entries store intermediary versions of an image file.

You can also inspect an image, such as debian:bookworm.

docker image inspect debian:bookworm

Images and Containers

As stated above, container are created from images. Let's re-create the Nginx container, starting from the nginx:latest image:

docker create --rm --name cdl-nginx nginx:latest

Check out it was created by running:

docker ps -a

The container is currently stopped. In order to start the container, run:

docker strt cdl-nginx

Check out it was started by running:

docker ps
docker logs cdl-nginx
docker inspect cdl-nginx
docker stats cdl-nginx

The create and start command can be combined in a single command, docker run.

Create two more Ngin containers by uring docker fun.

docker run --rm --name cdl2-nginx -p 8882:80 nginx:latest
docker run --rm --name cdl3-nginx -p 8883:80 nginx:latest

Do It Yourself

Create încă 5 containere din imaginile existente.

Getting Images

Images are stored locally either by being pulled from a container registry such as DockerHub (see section "Getting Images") or from a Dockefile (see section "Dockerfile).

To search for an image you like, use the commands below:

docker search database

To pulll images localy, use:

docker pull <path the containers>

Do It Yourself

Download the following images:

  • Dohttps://hub.docker.com/_/mariadbwnload locally for the applications: MongoDB, MariaDB.
  • Create 20-30 instances.
  • Aftr a while, try to stop the newly instances.

Installing Docker

Install Docker Engine following the tutorial. We recommend that you install Docker inside of a Linux Virtual Machine if you're running on Windows so that you can take advantage of its CLI features.

Use either Windows Subsystem for Linux or the Intro to Operating Systems Virtual Machine if you you with to run in a Linux VM.

Make sure to add your user to the docker group so you can run the docker commands without sudo.

As a summeryo install Docker, follow the instructions below, also listed in the install-nginx.sh script.

# Add Docker's official GPG key:
sudo apt-get -yqq update
sudo apt-get -yqq install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get -yqq update

sudo apt-get -yqq install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo adduser $USER docker
student@cdl-docker:~/work

Dockerfile

Dockerfiles provide recipes for creating a container by writing a script which sets up the container environment.

The following file defines a Docker container. Read the file and follow the rules which are defined in it. We notice the following keywords:

  • FROM - the base container on top of which the setup will be done;
  • RUN - runs a setup command;
  • WORKDIR - sets the container work directory to the specific path;
  • USER - sets the running user to the specific username;
  • ARG - defines an argument at build time;
  • COPY - copies a file from the build directory to the container.

Inspect the following Dockerfiles and try to follow the commands being run and the keywords used:

Python Server

Go to the python-server directory and build the container using the following command:

docker build -t python-server:1.0 .

The command builds the container with the specification from the Dockerfile. Add another line which installs the curl package. Test the container functionality by connecting to it and running the curl localhost:8080 command.

Change the base image to Debian and rebuild the container tagged with the python-server-debian:1.0 tag.

Create a Makefiles which has the following rules:

  • build: creates a new image using the Dockerfile;
  • start: starts a container based on the python-server image named python-workspace in the background;
  • stop: stops the python-workspace container;
  • connect: connects to the container in an interactive shell.

Assignment Checker

A common use case for using containers is platform-agnostic testing. The assignment-checker directory contains a bash scripts which runs tests on an application by running it and comparing its output with a reference.

Create a Docker image which is able to run this script, compile de application and run the tests.

Volumes

While it makes sense to run Docker containers by themselves as services, all the data that they produce is ephemeral and will be deleted when the container is destroyed.

To provide an input to the containers and a permanent storage for them we use volumes.

Volumes are used to save outputs of files permanently. Start a container based on the image you can build and call infinite-wrierin the background using the following command:

docker run -d --name perpetual-writer -v perpetual-storage:/var/perpetual-storage -t perpetual-writer

Stop it and remove it. Start a new container based on the same image using the same command. Enter the container and check the content of the /perpetual-storage/logs file.

The files are still stored on disk but in the /var/lib/docker directory. To find local mount point of the volume run the docker volume inspect command. List the content of that directory.

Run the scripts in TODO. Identify for each container what volume it is using and what is the path to that volume on disk. There are three containers.

Bind mounts

Bind volumes mount files or directories from the host to a path in the container.

We will be running the nginx container using content on our host system. The command to do this from the repository root is:

TODO

The TODO directory is mounted to the /var/www directory. Change the above command to mount the TODO directory instead. See what has changed.

Add an additional mount point to the above command to mount the TODO file as the nginx configuration file fount at TODO.

Build Program With GCC13

An advantage of using containers is the fact that they offer a flexible environment for testing and building applications. Based on this Dockerfile, create a Docker image which compiles an application based based on a Makefile located in the /workdir path.

The container must be able to compile applications using GCC13.

Container Registries

Now that we have created a set of containers, we want to publish them so they are available to the world and to download on other systems.

To push the python-container image that we have built earlier, we will need to tag it so that it has an associated namespace as such:

docker tag python-container:1.0 <dockerhub-username>/python-container:1.0

Where dockerhub-username is your Dockerhub username.

To push the container you will use the docker push command:

docker push <dockerhub-username>/python-container:1.0

Tag the assignment-checker container and push it to Dockerhub.

Using GitHub Container Registry

While using Dockerhub offers great visibility for projects and container images, it limits the number of pulls for images on a specific IP. To bypass this issue we will create a GitHub Container Registry (GHCR) account and login to it.

Follow the GHCR tutorial to create a GHCR account.

Login to the account the same as you did with the Dockerhub account and tag the assignment-checker image to be pushed to GHCR.

Advanced Applications

Dokerfile stages

We have noticed that actions in Dockerfiles are split up into multiple RUN actions. Compare the two Dockerfile examples found in the simple-docker and staged-docker directories.

Remove the install of cowsay from both of the Dockerfiles, rebuild the images, and notice which one is rebuilt the fastest.

Docker image save

reference Compose; no time to work on it

GitHub Actions

Sample GitHub project written in C Have action to build and test

About

Hands-on Docker workshop

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 28.2%
  • Shell 27.3%
  • Makefile 19.1%
  • Python 17.7%
  • C 7.1%
  • HTML 0.6%