This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
18 lines (18 sloc)
353 Bytes
| db: | |
| image: postgres:9.3 | |
| web: | |
| build: . | |
| ports: | |
| - "8000:8000" | |
| volumes: | |
| - .:/app | |
| links: | |
| - db | |
| environment: | |
| - PYTHONDONTWRITEBYTECODE=1 | |
| - DATABASE_URL=postgres://postgres@db/postgres | |
| - DEBUG=True | |
| - ALLOWED_HOSTS=localhost,127.0.0.1, | |
| - SECRET_KEY=59114b6a-2858-4caf-8878-482a24ee9542 | |
| command: | |
| ./bin/run-fig.sh |