1.0.0 • Published 8 years ago
encrox.io v1.0.0
Docker-Compose CheatSheet
Up and down
docker-compose up --build -dStart containers (with rebuild) in the backgrounddocker-compose stopGracefully stop containersdocker-compose killNon-Gracefully stop containersdocker-compose downStops containers and removes containers, networks, volumes, and images created byup
Manage
docker-compose run <service> <process>, e.g.docker-compose run php bashRun a process in a specific container/servicedocker-compose psList containers from the currently running docker-compose environment
Logs
docker-compose logsShow logs from all containers till now.docker-compose logs -fShow logs from all containers and followdocker-compose logs -f <service>Show logs from a single service container and follow
1.0.0
8 years ago