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
Last active
April 17, 2020 03:35
-
-
Save beevelop/1975674c22ce8948c895 to your computer and use it in GitHub Desktop.
Taiga Docker-Compose
This file contains 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
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: [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_HOST_USER: [email protected] | |
EMAIL_HOST_PASSWORD: yourpassword | |
DEFAULT_FROM_EMAIL: [email protected] | |
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 |
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
Is this password correct?