You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker-compose up
docker-compose up --build #Build & Up
docker-compose down # Stop and remove container
docker-compose up -d # Detached mode
docker-compose start # existing container operation
docker-compose restart
docker-compose stop
System cleaning command
docker container ls
docker container ls -a
docker system df # Show docker disk usage
docker image ls
docker image rm imageID
docker system df -v # Show detailed information on space usage
docker system info
docker system prune
docker system prune -f # --forece Do not prompt for confirmation
docker system prune -a # --all Remove all unused images not just dangling ones
docker container stop web2 redis
docker container stop $(docker container ls -a -q)