...

/

Docker Kata 3: Container Volumes and File System

Docker Kata 3: Container Volumes and File System

Learn how container volumes and file systems work.

Docker containers use an internal file system that’s isolated from the host and other containers. This kata will teach us what happens when we make changes to a container file system. We’ll also learn how to create volumes that can be shared between containers and their hosts and between other containers.

Step 1: Make container file system changes

The command to stop and remove all the containers is given below.

Press + to interact
docker container stop $(docker container ls -q)
docker container rm $(docker container ls -aq)

Note: The container IDs we see will be different.

The output will be something like this:

Commands

Command/Parameter

Description

docker container stop $(docker container ls -q)

This stops all the containers.

docker container rm $(docker container ls -aq)

This removes all the containers.

The command to run the ubuntu container and execute the bash shell is given below.

Press + to interact
docker container run -it ubuntu bash

After running the command above, the output will be something like this:

Commands

Parameter

Description

docker container

This is the parent command.

-it

This runs the container in interactive mode.

ubuntu

This is the name of the image to run.

bash

This is the command to run on the container. This is the bash shell.

This command runs an Ubuntu container and executes the Bash shell.

The command to create and list the file in the root of the container is given below.

Press + to interact
ls
echo "file1text" > file1.txt
ls
exit

The output will be something like this:

Commands

Command/Parameter

Description

ls

This lists files in the container.

echo "file1text" > file1.txt

This writes text into a new file called file1.txt.

ls

This lists files in the container. Note that the file1.txt file is now in the root directory of the container.

exit

This exits the bash shell, also causing the container to exit.

This sequence of commands creates a new file in the root of the container called file1.txt. The ls command displays the file. The exit command terminates the bash program, which exits the container.

The command to run the second Ubuntu container is given below.

Press + to interact
docker container run -it ubuntu bash
ls
exit

After running the command above, the output displayed will be something like this:

Commands

Parameter

Description

docker container

This is the parent command.

-it

This runs the container in interactive mode.

ubuntu

This is the name of the image to run.

bash

This is the command to run on the container. This is the bash shell.

This command runs a second Ubuntu container and ...