Name |
Description |
OS |
mkdocs serve | Starts mkdos webserver with mkdocs.yml configuration | Linux |
mkdocs gh-deploy | Automaticaly uploads mkdocs to github | Linux |
docker ps | Show running containers | Linux |
docker pull [name of image] | Download docker image | Linux |
docker run -d -t --name [name of container] [name of image] | Make container with specific name with image | Linux |
docker exec -it [container name] bash | Enter to the container with bash | Linux |
docker rm -f [container name] | Delete container | Linux |
docker stop [container name] | Stop container | Linux |
docker start [container name] | 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 [name of python file] --noconsole --onefile | Makes executable file from python file. | MacOS |
pyinstaller --noconsole --onefile | Makes executable file from python file. | Linux |
whois [domain] | get all informations about the domain | Linux |
git gc && git count-objects -vH | Get all statics from git repository on your computer | MacOS |