- Docker with stable-slim Debian version
- All tools you need to start light programming
- Tmux can split your terminal in multiple panles
- Verify Dockerfile : docker build --check .
- Buliding image from Dockerfile : docker build -t zshuv .
- Cleaning all images(be carefull) : docker system prune -af
- Remove image : docker rmi -f zshuv
- Runing image in zsh : docker run -it zshuv /bin/zsh
- Listing images : docker images
- Monitoring dockers : docker stats
- Stopper un docker : docker stop zshuv
- Creat projet : uv init new_project
- Install specific python version : uv python install 3.14
- Run streamlit : uv run --active streamlit run home.py
- $> git clone https://github.com/qwarksky/zshuv.git zshuv
- $> docker build -t zshuv .
- $> docker run -it zshuv /bin/zsh