Define and run multi-container applications with Docker
Go to file
Fred Lifton 8a7b3fb0eb Merge pull request #922 from aanand/tweak-intro
Tweak intro
2015-02-09 16:11:21 -08:00
bin Rename binary to docker-compose and config file to docker-compose.yml 2015-01-20 21:00:23 +00:00
compose Ship 1.1.0-rc2 2015-01-29 18:00:10 -05:00
contrib/completion/bash Merge pull request #887 from albers/multiple-configfiles 2015-01-27 23:08:23 -05:00
docs Tweak intro 2015-02-05 16:17:38 -05:00
script Fix typos 2015-01-20 21:28:49 +00:00
tests Merge pull request #898 from aanand/support-fig-yml 2015-01-29 13:47:49 -05:00
.dockerignore Add .dockerignore 2014-10-23 19:00:44 +01:00
.gitignore Rename binary to docker-compose and config file to docker-compose.yml 2015-01-20 21:00:23 +00:00
CHANGES.md Add missing cpu_shares option for rel. 1.1.0-rc1 2015-02-01 17:03:50 +01:00
CONTRIBUTING.md Update README.md, ROADMAP.md and CONTRIBUTING.md 2015-01-20 21:00:23 +00:00
Dockerfile Rename binary to docker-compose and config file to docker-compose.yml 2015-01-20 21:00:23 +00:00
LICENSE Docker, Inc. 2014-07-24 10:24:17 -07:00
MAINTAINERS Make @dnephin a maintainer 2014-11-05 09:47:48 +00:00
MANIFEST.in Add tests to sdist. 2014-11-28 09:37:33 -06:00
README.md Update README.md, ROADMAP.md and CONTRIBUTING.md 2015-01-20 21:00:23 +00:00
ROADMAP.md Update README.md, ROADMAP.md and CONTRIBUTING.md 2015-01-20 21:00:23 +00:00
requirements-dev.txt Remove fig.packages replace with real deps. 2014-09-05 11:44:49 -07:00
requirements.txt Use latest docker-py. 2015-01-25 15:33:15 -05:00
setup.py Use latest docker-py. 2015-01-25 15:33:15 -05:00
tox.ini Some minor cleanup from yelp/fig 2014-12-11 10:08:39 -08:00
wercker.yml Run pyinstaller build as normal user 2014-09-30 16:25:40 -07:00

README.md

Docker Compose

wercker status

Fast, isolated development environments using Docker.

Define your app's environment with Docker so it can be reproduced anywhere:

FROM python:2.7
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD python app.py

Define the services that make up your app so they can be run together in an isolated environment:

web:
  build: .
  links:
   - db
  ports:
   - "8000:8000"
   - "49100:22"
db:
  image: postgres

(No more installing Postgres on your laptop!)

Then type docker-compose up, and Compose will start and run your entire app.

There are commands to:

  • start, stop and rebuild services
  • view the status of running services
  • tail running services' log output
  • run a one-off command on a service

Installation and documentation

Full documentation is available on Fig's website.