A minimalistic taiga.io docker image easily configurable.
This Docker image is totally based on this one by @imiell but it adds the possibility to configure some settings for the taiga backend and frontend.
Simply git clone
this repo.
Then edit local.py
for backend settings and main.json
for frontend settings.
cd accollo
Build it with Docker:
docker build -t accollo
To run it and daemonize the process:
docker run -d -p 8000:8000 -p 8001:8001 accollo /bin/bash -c '/root/start_postgres.sh && /root/start_taiga.sh && echo READY! && sleep infinity'
The default settings are set to prevent registration.
Add persistence, saving in a volume postgres data.
All the credits goes firstly to the taiga.io team and to @imiell that created the docker image on which this one is based.