Aanand Prasad 74302560f5 Merge pull request #891 from aanand/fix-image-volumes-test
Fix test for image-declared volumes
2015-01-27 16:33:59 -05:00
2015-01-20 22:42:59 +00:00
2015-01-20 21:28:49 +00:00
2015-01-27 14:46:58 -05:00
2014-10-23 19:00:44 +01:00
2015-01-20 22:42:59 +00:00
2014-07-24 10:24:17 -07:00
2014-11-05 09:47:48 +00:00
2014-11-28 09:37:33 -06:00
2015-01-25 15:33:15 -05:00
2015-01-25 15:33:15 -05:00
2014-12-11 10:08:39 -08:00

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.

Description
Define and run multi-container applications with Docker
Readme Apache-2.0 51 MiB
Languages
Go 97.1%
Dockerfile 2%
Makefile 0.5%
HCL 0.3%