docker-taiga/taiga

No documented default admin credentials.

Leopere opened this issue · 8 comments

I've gotten a tryout instance up and running but there doesn't appear to be any documentation on how to create initial users or what the default credentials are despite finding admin and 123123 for the password documented randomly.

Added the default taiga user/password to README, thanks.

I feel like my problem might've been something else but thanks for the documentation.

admin & 123123 is not working

@kokoye2007 to be honest my issue was that I was putting this thing behind a Traefik reverse proxy and for the most part that never causes an issue but theres something janky about how Taiga operates so its been since 2014 and I still can't use this technology because self hosting is too much of a pain.

@kokoye2007 to be honest my issue was that I was putting this thing behind a Traefik reverse proxy and for the most part that never causes an issue but theres something janky about how Taiga operates so its been since 2014 and I still can't use this technology because self hosting is too much of a pain.

sorry
its depend on proxy services (host)
i try change host and test its working
also ssl, bash autocomplete / auto config is not working
but you can manual config in conf/proxy/ with start.sh rule
its working.

Do you have an example on what kind of changes you're suggesting @kokoye2007? Perhaps paste the change in here.

1

Just work with admin and 123123

  • edit variables.env
TAIGA_HOST=taiga.lan

to your real host

TAIGA_HOST=taiga.mydomain.com

go to 3

2

if you want to change https ?

edit variables.env

  • http to https
  • ENABLE_SSL='no' to ENABLE_SSL='yes'
  • change comment # CERT_NAME=fullchain.pem # CERT_KEY=privkey.pem
TAIGA_SCHEME=https
..
..
ENABLE_SSL='yes'
CERT_NAME=fullchain.pem
CERT_KEY=privkey.pem

edit docker-compose.yml

      #- ./cert:/taiga-cert

to

      - ./cert:/taiga-cert

3

Clean and Try

docker-compose stop
docker-compose down
docker-compose up

check log and try with your real host name.

4

still error with HTTPS

check

5

Its perfect ? daemon mode

run in daemon mode

docker-compose -f your-compse/path/and/file.yaml

make systemd service file

Example

@kokoye2007 my issue is that I am using a reverse proxy called Traefik to proxy about 20 other web-apps on this host through 443/80 with TLS upgrading and lets encrypt maintainance automatically handled at the border. I don't really want Taiga handling the encryption if at all possible and for some reason the second I plunk this sucker behind Traefik Taiga's default credentials fail.