I received the same error when I stood up an nginx proxy in front of the docker pieces. Everything worked fine when I was using ssh to tunnel into port 9000. Hope there is an easy solution.
I’m getting the same error and collected the info suggested.
logs did not have much. Frontend container log only shows the http get attempt like: - - [17/Feb/2023:13:33:34 +0000] “GET /conf.json HTTP/1.0” 304 0 “http://docker-pr-app-a:9000/discover” “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36” “-”, but no error. The backend container log shows a little more, but the only error entry is: [2023-02-17 13:26:27,135: ERROR/MainProcess] consumer: Cannot connect to amqp://taiga:**@taiga-async-rabbitmq:5672/taiga: [Errno 111] Connection refused.
The docker-compose used was the default of the project, no edits made
I don’t use nginx on my own. Only started taiga by running ./lauch-taiga.sh
The result of docker-compose ps is:
-bash-4.2$ docker-compose ps | grep taiga
taigadocker_taiga-async-rabbitmq_1 docker-entrypoint.sh rabbi … Up 15671/tcp, 15672/tcp, 15691/tcp,
taigadocker_taiga-async_1 /taiga-back/docker/async_e … Up 8000/tcp
taigadocker_taiga-back_1 ./docker/entrypoint.sh Up 8000/tcp
taigadocker_taiga-db_1 docker-entrypoint.sh postgres Up 5432/tcp
taigadocker_taiga-events-rabbitmq_1 docker-entrypoint.sh rabbi … Up 15671/tcp, 15672/tcp, 15691/tcp,
taigadocker_taiga-events_1 ./docker/entrypoint.sh Up 8888/tcp
taigadocker_taiga-front_1 /docker-entrypoint.sh ngin … Up 80/tcp
taigadocker_taiga-gateway_1 /docker-entrypoint.sh ngin … Up 0.0.0.0:9000->80/tcp
taigadocker_taiga-protected_1 ./docker/entrypoint.sh Up 8003/tcp
Before running taiga, there’s nothing on port 9000.