Define and run multi-container applications with Docker
Go to file
Kevin van Zonneveld b92651070f Add steps for contributing to README 2014-03-04 12:05:38 +01:00
bin Add script to build an OS X binary 2014-03-03 15:09:56 +00:00
docs Document link aliases 2014-03-03 18:00:27 +00:00
fig Ship 0.3.0 2014-03-03 18:51:03 +00:00
script Add script to build Linux binary 2014-03-03 15:10:02 +00:00
tests Fix: image-defined entrypoint not overridden by intermediate container 2014-03-03 18:06:06 +00:00
.gitignore Add script to build an OS X binary 2014-03-03 15:09:56 +00:00
.travis.yml Remove Python 3 from Travis 2014-03-03 19:21:27 +00:00
CHANGES.md Ship 0.3.0 2014-03-03 18:51:03 +00:00
Dockerfile Use Python base image and run as normal user 2014-03-03 15:10:02 +00:00
LICENSE Add license 2013-12-09 12:01:44 +00:00
MANIFEST.in remove tests from distribution build 2014-02-23 03:37:31 +01:00
README.md Add steps for contributing to README 2014-03-04 12:05:38 +01:00
requirements-dev.txt Add script to build Linux binary 2014-03-03 15:10:02 +00:00
requirements.txt Remove six from requirements 2014-03-03 12:08:38 +00:00
setup.py Update homepage in setup.py 2014-01-27 18:42:00 +00:00
tox.ini Added tox file 2014-01-06 17:58:49 +00:00

README.md

Fig

Build Status PyPI version

Fast, isolated development environments using Docker.

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

FROM orchardup/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: orchardup/postgresql

(No more installing Postgres on your laptop!)

Then type fig up, and Fig will start and run your entire app:

example fig run

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

Fig is a project from Orchard, a Docker hosting service. Follow us on Twitter to keep up to date with Fig and other Docker news.

Installation and documentation

Full documentation is available on Fig's website.

Running the test suite

$ script/test

Building OS X binaries

$ script/build-osx

Note that this only works on Mountain Lion, not Mavericks, due to a bug in PyInstaller.

Contributing to Fig

If you're looking contribute to Fig but you're new to the project or maybe even to Python, here are the steps that should get you started.

  1. Fork https://github.com/orchardup/fig to your username. kvz in this example.
  2. Clone your forked repository locally git clone git@github.com:kvz/fig.git.
  3. Enter the local directory cd fig.
  4. Set up a development environment python setup.py develop. That will install the dependencies and set up a symlink from your fig executable to the checkout of the repo. So from any of your fig projects, fig now refers to your development project. Time to start hacking : )
  5. Works for you? Run the test suite via ./scripts/test to verify it won't break other usecases.
  6. All good? Commit and push to GitHub, and submit a pull request.