Skip to content

Instantly share code, notes, and snippets.

@beevelop
Last active April 17, 2020 03:35
Show Gist options
  • Save beevelop/1975674c22ce8948c895 to your computer and use it in GitHub Desktop.
Save beevelop/1975674c22ce8948c895 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/1975674c22ce8948c895.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
data:
image: tianon/true
volumes:
- /var/lib/postgresql/data
- /usr/local/taiga/media
- /usr/local/taiga/static
- /usr/local/taiga/logs
taigadb:
image: postgres
environment:
POSTGRES_USER: taiga
POSTGRES_PASSWORD: Un1c0rn
volumes_from:
- data
taigaback:
image: beevelop/taiga-back
environment:
SECRET_KEY: Un1c0rns_4r3_4w3s0m3
PUBLIC_REGISTER_ENABLED: "True"
FEEDBACK_ENABLED: "True"
FEEDBACK_EMAIL: unicorn@example.com
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_HOST_USER: unicorn@gmail.com
EMAIL_HOST_PASSWORD: yourpassword
DEFAULT_FROM_EMAIL: noreply@taiga.example.com
links:
- taigadb:postgres
volumes_from:
- data
taigafront:
image: beevelop/taiga-front
environment:
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"
links:
- taigaback
volumes_from:
- data
ports:
- 80:80
@steimntz
Copy link

Is this password correct?

@briantanseng
Copy link

Hi. I was able to instantiate the docker container. However, I am unable to login as admin. The default password 123123 is not working.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment