sudo usermod -aG docker $(whoami)
- docker ps # displays all currently running containers
- docker ps -a # displays all running and stopped containers
- docker start ID_CONTAINER # starts the container with the entered id
- docker stop ID_CONTAINER # stop the container with the entered id
- docker exec -u 0 -it ID_CONTAINER "bash" # run bash in a running container