Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 1.25 KB

README.md

File metadata and controls

40 lines (22 loc) · 1.25 KB

Docker image for exercise linux command

Container image based on rockylinux/rockylinux:9.5

Exercise codes are from O'REILLY and gilbut IT book

Docker file source Github

how can I use it?

run container

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

connect container after exit

But you can start container without create new container again

docker start -ai lets-practice-linux-cli

account info

default account is myuser : password

you can change password by $ echo "myuser:new_password" | chpasswd

Why did you build this image?

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.