No Description

Aanand Prasad 22aca1a8a5 Merge pull request #879 from albers/bash-completion 10 years ago
bin 620e29b63f Rename binary to docker-compose and config file to docker-compose.yml 10 years ago
compose 43fdae8bc6 Ship 1.1.0-rc1 10 years ago
contrib bd535c76d0 Add --service-ports to bash completion 10 years ago
docs 28fa49e569 Merge pull request #810 from madwire/patch-1 10 years ago
script 16d6018419 Fix typos 10 years ago
tests 1476027410 Fix test for image-declared volumes 10 years ago
.dockerignore e66c0452d5 Add .dockerignore 11 years ago
.gitignore 620e29b63f Rename binary to docker-compose and config file to docker-compose.yml 10 years ago
CHANGES.md 43fdae8bc6 Ship 1.1.0-rc1 10 years ago
CONTRIBUTING.md c981ce929a Update README.md, ROADMAP.md and CONTRIBUTING.md 10 years ago
Dockerfile 620e29b63f Rename binary to docker-compose and config file to docker-compose.yml 10 years ago
LICENSE 99064d17dd Docker, Inc. 11 years ago
MAINTAINERS 06a1b32c12 Make @dnephin a maintainer 11 years ago
MANIFEST.in 0150b38b8f Add tests to sdist. 11 years ago
README.md c981ce929a Update README.md, ROADMAP.md and CONTRIBUTING.md 10 years ago
ROADMAP.md c981ce929a Update README.md, ROADMAP.md and CONTRIBUTING.md 10 years ago
requirements-dev.txt 7fd37c89b9 Remove fig.packages replace with real deps. 11 years ago
requirements.txt 0bc4a28dcc Use latest docker-py. 10 years ago
setup.py 0bc4a28dcc Use latest docker-py. 10 years ago
tox.ini 3c0f297ba6 Some minor cleanup from yelp/fig 11 years ago
wercker.yml b4fbab4b56 Run pyinstaller build as normal user 11 years ago

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.