This repo contains several example configurations for setting up Taiga using docker-taiga.
If you want a very simple example, simply pull the docker-compose.yml
file from here:
https://github.com/benhutchins/docker-taiga/tree/master/docker-compose.yml
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 use this example, as-is, simply clone this repo and startup Docker:
git clone https://github.com/benhutchins/docker-taiga-example.git mytaiga
cd mytaiga/
# Optional, but likely desired, update your configuration now
vi docker-compose.yml # Be sure to update the TAIGA_HOSTNAME
vi taiga-conf/conf.json
vi taiga-conf/local.py
# Startup docker containers
docker-compose up -d
# Wait ~30 seconds. The taiga container will initialize your postgres database.
# Now open your web browser:
open http://localhost/
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