Container image based on rockylinux/rockylinux:9.5
Exercise codes are from O'REILLY and gilbut IT book
Docker file source Github
you can change container name (default name is "lets-practice-linux-cli")
docker run -it --name lets-practice-linux-cli hayanbada/linux-cli-prac:latest
After exit shell, container will be stopped
But you can start container without create new container again
docker start -ai lets-practice-linux-cli
default account is myuser
: password
you can change password by $ echo "myuser:new_password" | chpasswd
I'm reading an efficient linux at the command line. I was practicing on gitbash/windows, zsh/macos, and bas/vm_ubuntu.
I made it because I wanted to practice it by running it with docker container regardless of the environment.