Skip to content
forked from docker/compose

Define and run multi-container applications with Docker

License

Notifications You must be signed in to change notification settings

weynhamz/compose

This branch is 5312 commits ahead of, 4980 commits behind docker/compose:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7fc4747 · May 16, 2019
Feb 21, 2019
Oct 17, 2018
Aug 3, 2017
May 14, 2019
Mar 2, 2019
Mar 6, 2019
Jul 25, 2016
Apr 23, 2018
Apr 17, 2019
Apr 17, 2019
May 14, 2019
Oct 17, 2018
Oct 17, 2018
Nov 30, 2018
Mar 28, 2019
Aug 14, 2015
Feb 12, 2018
Apr 17, 2019
Feb 21, 2019
Sep 27, 2017
Apr 17, 2019
Jul 24, 2014
Jan 14, 2019
Dec 1, 2018
Nov 26, 2018
Feb 19, 2016
Feb 21, 2019
Apr 17, 2019
Mar 12, 2019
Sep 15, 2015
Feb 21, 2019
Feb 5, 2019
May 12, 2019
Jan 4, 2017
May 16, 2019
Feb 21, 2019

Repository files navigation

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

  • Full documentation is available on Docker's website.
  • Code repository for Compose is on GitHub.
  • If you find any problems please fill out an issue. Thank you!

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.

About

Define and run multi-container applications with Docker

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 96.1%
  • Shell 3.1%
  • Other 0.8%