Skip to content

Instantly share code, notes, and snippets.

@pawndev
Forked from beevelop/README.md
Last active December 11, 2016 20:15
Show Gist options
  • Save pawndev/f9193fdd1ae49db5caf852302ab18d91 to your computer and use it in GitHub Desktop.
Save pawndev/f9193fdd1ae49db5caf852302ab18d91 to your computer and use it in GitHub Desktop.
Taiga Docker-Compose
1. Install and run the docker-compose.yml
git clone https://gist.github.com/f9193fdd1ae49db5caf852302ab18d91.git taiga
cd taiga
# Update docker-compose.yml
# - Replace Hostname of taigaback and taigafront
# - Update or disable Email settings
docker-compose up -d
2. Wait a few seconds / minutes (generating sample data takes some time)
3. Access Taiga via Taiga-Front's hostname and login with User admin and Password 123123
version: '2'
services:
taigadata:
image: tianon/true
volumes:
- './volumes/data:/var/lib/postgresql/data'
- './volumes/media:/usr/local/taiga/media'
- './volumes/static:/usr/local/taiga/static'
- './volumes/logs:/usr/local/taiga/logs'
taigadb:
image: postgres
volumes_from:
- taigadata
taigaback:
image: beevelop/taiga-back
links:
- taigadb:postgres
volumes_from:
- taigadata
taigafront:
image: beevelop/taiga-front
links:
- taigaback
volumes_from:
- taigadata
environment:
- VIRTUAL_PORT=80
- VIRTUAL_HOST=pivotal.domain.tld
- LETSENCRYPT_HOST=pivotal.domain.tld
- [email protected]
POSTGRES_USER=taiga
POSTGRES_PASSWORD=Un1c0rn
SECRET_KEY=Un1c0rns_4r3_4w3s0m3
PUBLIC_REGISTER_ENABLED="True"
FEEDBACK_ENABLED="True"
[email protected]
STATS_ENABLED="False"
FRONT_SITEMAP_ENABLED="True"
SAMPLE_DATA="False"
DEBUG_ENTRYPOINT="True"
DEBUG="True"
TEMPLATE_DEBUG="True"
EMAIL_USE_TLS="True"
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
[email protected]
EMAIL_HOST_PASSWORD=yourpassword
[email protected]
DEFAULT_LANGUAGE=en
PRIVACY_POLICY_URL=https://taiga.example.com/privacy_policy
TERMS_OF_SERVICE_URL=https://taiga.example.com/tos
DEBUG_ENTRYPOINT="True"
DEBUG="False"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment