meta data for this page
  •  

This is an old revision of the document!


docker-compose is running according description file docker-compose.yml in current directory.

  • docker-compose up - Build, (re)create, start and attach to containers.
  • docker-compose up -d - Build, (re)create, start and attach to containers. Detached mode (background)
  • docker-compose run - Run a one-off command on a service.

Recreate containers:

  • docker-compose build
  • docker-compose up -d