ipedrazas / taiga-docker

Docker scripts to run your own Taiga
Apache License 2.0
324 stars 115 forks source link

Login/SignUP failure #37

Open kakkartushar1 opened 8 years ago

kakkartushar1 commented 8 years ago

Unable to login via admin:123123 and also unable to sign up. Please advise.

MatthieuScarset commented 7 years ago

Same thing here... in 2017

aceyin commented 7 years ago

the same issue, and taiga-back reports this error: django.db.utils.ProgrammingError: relation "users_user" does not exist LINE 1: ..._user"."new_email", "users_user"."is_system" FROM "users_use...

seems the initial data not created during installation

any suggestion?

gerickt commented 7 years ago

same problem here!

resilva commented 6 years ago

If you are using the docker-compose you might have to initialize the database manually :

docker-compose exec taigaback /usr/src/app/taiga-back/regenerate.sh

This will regenerate all the data, also if you encounter a problem with a 405 request not allowed when login/register a user you must change the config file in the frontend container (or override the file in a volume which is better...) :

docker-compose exec taigafront /bin/bash
apt-get update && apt-get install vim

Here you can modify /taiga/conf.json you must change the BASE_URL according to your config, if you're using docker-compose you probably have to set it to :

    "api": "http://localhost:8000/api/v1/",

I don't have time to make a PR to fix the docker images, hope this will help you.