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.
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 |
| This stops all the containers. |
| This removes all the containers. |
The command to run the ubuntu
container and execute the bash
shell is given below.
docker container run -it ubuntu bash
After running the command above, the output will be something like this:
Commands
Parameter | Description |
| This is the parent command. |
| This runs the container in interactive mode. |
| This is the name of the image to run. |
| This is the command to run on the container. This is the |
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.
lsecho "file1text" > file1.txtlsexit
The output will be something like this:
Commands
Command/Parameter | Description |
| This lists files in the container. |
| This writes text into a new file called |
| This lists files in the container. Note that the |
| This exits the |
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.
docker container run -it ubuntu bashlsexit
After running the command above, the output displayed will be something like this:
Commands
Parameter | Description |
| This is the parent command. |
| This runs the container in interactive mode. |
| This is the name of the image to run. |
| This is the command to run on the container. This is the |
This command runs a second Ubuntu container and ...