Name |
Description |
OS |
mkdocs serve | Starts mkdos webserver with mkdocs.yml configuration | Linux |
mkdocs gh-deploy | Automaticaly uploads mkdocs to github | Linux |
docker pull | Download docker image | Linux |
docker run -d -t --name | Make container with specific name with image | Linux |
docker ps | Show running containers | Linux |
docker exec -it bash | Enter to the container with bash | Linux |
docker rm -f | Delete container | Linux |
docker stop | Stop container | Linux |
docker start | Starts specific container | Linux |
docker ps -a | Shows all containers | Linux |
docker ps --size | Show all containers with their sizes | Linux |
sudo docker image ls | Show all downloaded images | Linux |
pyinstaller --noconsole --onefile | Makes executable file from python file. | MacOS |
pyinstaller --noconsole --onefile | Makes executable file from python file. | Linux |