No Description

Ben Firshman 6d64f20ad6 Use hostname on home page example 11 years ago
bin 9550387e39 Add script to build an OS X binary 11 years ago
docs 6d64f20ad6 Use hostname on home page example 11 years ago
fig 2f6c763703 Merge pull request #353 from dnephin/add_flake8 11 years ago
script 01e2b56405 Add flake8 to test script 11 years ago
tests 0dc55fda45 Merge pull request #322 from dnephin/fix_cli_for_py26 11 years ago
.gitignore 779f4bda01 Fix cli for python 2.6 11 years ago
.travis.yml 939406ca9d Run flake8 in travis build 11 years ago
CHANGES.md a6324d6226 Ship 0.5.2 11 years ago
CONTRIBUTING.md 8fdeb46430 Add "update the website" step to release process 11 years ago
Dockerfile d600b3498b Remove entrypoint from dockerfile 11 years ago
LICENSE 99064d17dd Docker, Inc. 11 years ago
MAINTAINERS 8fa85ecc05 Add maintainers file 11 years ago
MANIFEST.in 229b59bd6e remove tests from distribution build 11 years ago
README.md 59c976510c Update URL in readme and setup.py 11 years ago
requirements-dev.txt 50a24bc3bf Add flake8 and fix errors. 11 years ago
requirements.txt 847ec5b559 Update dockerpty -> 0.2.3 11 years ago
setup.py c0450f7df0 Resolves #366, non-pinned versions in setup.py:install_requires 11 years ago
tox.ini 50a24bc3bf Add flake8 and fix errors. 11 years ago

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.