Define and run multi-container applications with Docker https://docs.docker.com/compose/
Find a file
Joffrey F e7a8b2fed5 Update TLS version configuration code. Tests.
Signed-off-by: Joffrey F <joffrey@docker.com>
2016-06-03 11:45:22 -07:00
bin
compose Update TLS version configuration code. Tests. 2016-06-03 11:45:22 -07:00
contrib Merge pull request #3218 from sdurrheimer/zsh-completion-run-workdir 2016-03-29 16:50:12 +01:00
docs Update TLS version configuration code. Tests. 2016-06-03 11:45:22 -07:00
experimental
project
script Skip invalid git tags in versions.py 2016-05-12 14:41:40 -04:00
tests Update TLS version configuration code. Tests. 2016-06-03 11:45:22 -07:00
.dockerignore
.gitignore
.pre-commit-config.yaml Tests use updated get_config_paths_from_options signature 2016-03-24 10:57:01 -07:00
.travis.yml
appveyor.yml
CHANGELOG.md Update release notes and set version to 1.8.0dev 2016-04-13 13:27:18 -04:00
CHANGES.md
CONTRIBUTING.md
docker-compose.spec
Dockerfile Upgade pip to latest 2016-04-26 11:58:41 -04:00
Dockerfile.run
LICENSE
logo.png
MAINTAINERS
MANIFEST.in
README.md Readme should use new docker compose format instead of the old one 2016-04-14 10:49:10 +01:00
requirements-build.txt
requirements-dev.txt
requirements.txt Require latest docker-py version 2016-04-29 16:37:26 -07:00
ROADMAP.md Prevent unnecessary inspection of containers when created from an inspect. 2016-04-06 11:14:42 -04:00
setup.py Require latest docker-py version 2016-04-29 16:37:26 -07:00
SWARM.md
tox.ini

Docker Compose

Docker Compose

Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a Compose file to configure your application's services. Then, using a single command, you create and start all the services from your configuration. To learn more about all the features of Compose see the list of features.

Compose is great for development, testing, and staging environments, as well as CI workflows. You can learn more about each case in Common Use Cases.

Using Compose is basically a three-step process.

  1. Define your app's environment with a Dockerfile so it can be reproduced anywhere.
  2. Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment:
  3. Lastly, run docker-compose up and Compose will start and run your entire app.

A docker-compose.yml looks like this:

version: '2'

services:
  web:
    build: .
    ports:
     - "5000:5000"
    volumes:
     - .:/code
  redis:
    image: redis

For more information about the Compose file, see the Compose file reference

Compose has commands for managing the whole lifecycle of your application:

  • Start, stop and rebuild services
  • View the status of running services
  • Stream the log output of running services
  • Run a one-off command on a service

Installation and documentation

Contributing

Build Status

Want to help build Compose? Check out our contributing documentation.

Releasing

Releases are built by maintainers, following an outline of the release process.