On day 5, we will focus on running base OS such as ubuntu, CentOS and Alpine. We will also learn how to reuse exited container. Finally, we will learn how to convert the container into images. Running Base OS To run base OS in a container, use one of the following command: docker run --name ubuntuwithpython3 -it ubuntu Next, we would like to perform system update and then install Python3 using the following command: apt-get update apt-get upgrade apt-get install python3 exit We can explore various base os. Base os are the os which the docker image is build on. Many OS vendor are racing to build the base os with the smallest size. docker run -it ubuntu docker run -it centos docker run -it debian docker run -it alpine docker run -it busybox docker run -it fedora /bin/bash Most OS will default to shell. however, for Fedora we must specify the shell path. Exit the base OS when done. Continue Exited Container In the last section, we have install Pyth...