Based on https://github.com/benhutchins/docker-taiga
To use this example, as-is, simply clone this repo and startup Docker:
git clone https://github.com/abihas/docker-taiga mytaiga
cd mytaiga/
# Optional, but likely desired, update your configuration now
nano docker-compose.yml # Be sure to update the TAIGA_HOSTNAME
nano taiga-conf/conf.json
nano taiga-conf/local.py
# Startup docker containers
docker-compose up -d postgres
docker-compose up -d taiga
# Wait ~30 seconds. The taiga container will initialize your postgres database.
# Now open your web browser:
open http://localhost:5555/
For a slightly more customized setup, this directory provides an example of how to extend docker-taiga and add taiga-contrib-slack and taiga-contrib-ldap-auth LDAP plugins.
To enable LDAP as well:
-
Uncomment the relevant lines from the
Dockerfile
andtaiga-conf/local.py
-
Add this to your
taiga-conf/conf.json
file:"loginFormType": "ldap",
To enable taiga-events:
- Uncomment relevant lines from
docker-compose.yml
- Update to
eventsUrl
inside thetaiga-conf/conf.json
file