1.0.0 • Published 8 years ago

encrox.io v1.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
8 years ago

Docker-Compose CheatSheet

Up and down

  • docker-compose up --build -d Start containers (with rebuild) in the background
  • docker-compose stop Gracefully stop containers
  • docker-compose kill Non-Gracefully stop containers
  • docker-compose down Stops containers and removes containers, networks, volumes, and images created by up

Manage

  • docker-compose run <service> <process>, e.g. docker-compose run php bash Run a process in a specific container/service
  • docker-compose ps List containers from the currently running docker-compose environment

Logs

  • docker-compose logs Show logs from all containers till now.
  • docker-compose logs -f Show logs from all containers and follow
  • docker-compose logs -f <service> Show logs from a single service container and follow