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
-
-
Save pawndev/f9193fdd1ae49db5caf852302ab18d91 to your computer and use it in GitHub Desktop.
Taiga Docker-Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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