Define and run multi-container applications with Docker https://docs.docker.com/compose/
Find a file
Joffrey F eb6441c8e3 Add sysctls option to 3.0 schema
Signed-off-by: Joffrey F <joffrey@docker.com>
2016-12-19 20:35:09 -08:00
bin
compose Add sysctls option to 3.0 schema 2016-12-19 20:35:09 -08:00
contrib Shell completion for --push-images 2016-07-27 16:00:53 +01:00
docs updated README per vnext branch plan 2016-10-05 16:19:09 -07:00
experimental Remove doc on experimental networking support 2016-07-25 13:38:04 +01:00
project
script case PyPI correctly 2016-11-22 11:15:21 +00:00
tests Merge pull request #4216 from lawliet89/userns_mode 2016-12-19 18:12:15 -08:00
.dockerignore
.gitignore
.pre-commit-config.yaml
.travis.yml
appveyor.yml
CHANGELOG.md case PyPI correctly 2016-11-22 11:15:21 +00:00
CHANGES.md
CONTRIBUTING.md Convert readthedocs links for their .org -> .io migration for hosted projects 2016-06-08 03:52:12 +01:00
docker-compose.spec Add missing config schema to docker-compose.spec 2016-10-24 10:55:04 -07:00
Dockerfile
Dockerfile.run Pin base image to alpine:3.4 in Dockerfile.run 2016-07-06 18:01:27 -07:00
Jenkinsfile Limit testing pool to Ubuntu hosts to avoid errors with dind not 2016-11-14 17:23:25 -08:00
LICENSE
logo.png
MAINTAINERS
MANIFEST.in
README.md fix(docs): updated documentation links 2016-10-24 15:41:31 +01:00
requirements-build.txt
requirements-dev.txt
requirements.txt Use docker SDK 2.0 2016-12-14 15:36:08 -08:00
ROADMAP.md
setup.py Use docker SDK 2.0 2016-12-14 15:36:08 -08: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.