docker-taiga / taiga

docker-compose.yml for simple taiga setup
215 stars 75 forks source link

No documented default admin credentials. #13

Closed Leopere closed 5 years ago

Leopere commented 5 years ago

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.

w1ck3dg0ph3r commented 5 years ago

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

Leopere commented 5 years ago

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

kokoye2007 commented 5 years ago

admin & 123123 is not working

Leopere commented 5 years ago

@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 commented 5 years ago

@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.

Leopere commented 5 years ago

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

kokoye2007 commented 5 years ago

1

Just work with admin and 123123

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

Leopere commented 5 years ago

@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.