docker
Table of Contents
Docker
Docker commands with no particular order
Prune
Prune images
docker image prune
Prune networks
docker network prune
Prune volumes
docker system prune --volumes
Prune system
docker system prune
Add -a to prune everything
Run command args
–namecontainer name-eenvironmental variables-pports (local-port:remote-port)-vvolumes (local/folder:remote/folder)–restart(always, never, unless-stopped, on-failure)
Exec commands in a container
docker exec -it <container-name or id> <command>
Restart all docker containers
docker restart $(docker ps -q)
Docker Compose
docker-compose exec commands
With the compose running (docker-compose up):
docker run <container-name-in-docker-compose> <command>
This command runs a new docker container to execute the command
–rmrun the container and delete it after execution
To execute a command inside a running container:
docker-compose exec <container-name> <command>
-iinteractive-ttty allocation
docker.txt · Last modified: 2024/11/17 12:59 by 127.0.0.1