Docker create image manually


We went over this step-by-step earlier, but let's have all the step in one place:

docker run -it --name ubu ubuntu:23.04


# apt-get update
# apt-get install htop
# echo "Hello World" > welcome.txt
# exit


docker container commit ubu myubu:1.00


docker container run --rm -it myubu:1.00