Keine Beschreibung

Ben Firshman bbcbe9df9f Upload PyPi package manually vor 11 Jahren
bin 9550387e39 Add script to build an OS X binary vor 12 Jahren
docs ba9d744293 Update IRC channel to be #docker-fig vor 11 Jahren
fig 2f6c763703 Merge pull request #353 from dnephin/add_flake8 vor 11 Jahren
script 01e2b56405 Add flake8 to test script vor 11 Jahren
tests 0dc55fda45 Merge pull request #322 from dnephin/fix_cli_for_py26 vor 11 Jahren
.gitignore 779f4bda01 Fix cli for python 2.6 vor 11 Jahren
.travis.yml bbcbe9df9f Upload PyPi package manually vor 11 Jahren
CHANGES.md a6324d6226 Ship 0.5.2 vor 11 Jahren
CONTRIBUTING.md bbcbe9df9f Upload PyPi package manually vor 11 Jahren
Dockerfile d600b3498b Remove entrypoint from dockerfile vor 11 Jahren
LICENSE 99064d17dd Docker, Inc. vor 11 Jahren
MAINTAINERS 8fa85ecc05 Add maintainers file vor 11 Jahren
MANIFEST.in 229b59bd6e remove tests from distribution build vor 12 Jahren
README.md 59c976510c Update URL in readme and setup.py vor 11 Jahren
requirements-dev.txt 50a24bc3bf Add flake8 and fix errors. vor 11 Jahren
requirements.txt 847ec5b559 Update dockerpty -> 0.2.3 vor 11 Jahren
setup.py c0450f7df0 Resolves #366, non-pinned versions in setup.py:install_requires vor 11 Jahren
tox.ini 50a24bc3bf Add flake8 and fix errors. vor 11 Jahren

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.