Skip to content

Instantly share code, notes, and snippets.

@real34
Created March 18, 2015 01:00
Show Gist options
  • Save real34/5a7ad542661091c6e4f2 to your computer and use it in GitHub Desktop.
Save real34/5a7ad542661091c6e4f2 to your computer and use it in GitHub Desktop.
Docker-compose file for taiga
data:
image: tianon/true
volumes:
- /var/lib/postgresql/data
- /usr/local/taiga/media
- /usr/local/taiga/static
- /usr/local/taiga/logs
back:
image: htdvisser/taiga-back
hostname: taiga.pierre-martin.fr
links:
- db:postgres
environment:
- SECRET_KEY="This is the best project manager ever!"
- DEFAULT_FROM_EMAIL="support@occitech.fr"
volumes_from:
- data
front:
image: htdvisser/taiga-front-dist
hostname: taiga.pierre-martin.fr
links:
- back:taigaback
volumes_from:
- data
ports:
- "4280:80"
db:
image: postgres
environment:
- POSTGRES_USER=occitech
- POSTGRES_PASSWORD=aze489aZZe!
volumes_from:
- data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment