Hello all.
So, basically i I read the other topics. I found this issue several times. I am not an expert with docker and taiga.
I made a VM with the latest Ubuntu version and successfully deployed Docker on in and also with the instruction I succussed with the installation of Taiga.
After I tried to connect with the given IP address, Taiga has failed…here is the image how it looks now. I got the first page, but then fails to connect.
I also made some changes in the docker-compose.yml file:
version: “3.5”
x-environment:
&default-back-environment
POSTGRES_DB: “taiga”
POSTGRES_USER: “taiga”
POSTGRES_PASSWORD: “g1LJRqV7e5PE”
POSTGRES_HOST: “taiga-db”
TAIGA_SECRET_KEY: “9t3U3X3P5KDa”
TAIGA_SITES_SCHEME: “http”
TAIGA_SITES_DOMAIN: “192.168.1.250:9000”
EMAIL_BACKEND: “django.core.mail.backends.${EMAIL_BACKEND}.EmailBackend”
DEFAULT_FROM_EMAIL: “${EMAIL_DEFAULT_FROM}”
EMAIL_USE_TLS: “${EMAIL_USE_TLS}”
EMAIL_USE_SSL: “${EMAIL_USE_SSL}”
EMAIL_HOST: “${EMAIL_HOST}”
EMAIL_PORT: “${EMAIL_PORT}”
EMAIL_HOST_USER: “${EMAIL_HOST_USER}”
EMAIL_HOST_PASSWORD: “${EMAIL_HOST_PASSWORD}”
RABBITMQ_USER: “${RABBITMQ_USER}”
RABBITMQ_PASS: “${RABBITMQ_PASS}”
CELERY_ENABLED: “False”
x-volumes:
&default-back-volumes
- taiga-static-data:/taiga-back/static
- taiga-media-data:/taiga-back/media
- ./config.py:/taiga-back/settings/config.py
services:
taiga-manage:
image: taigaio/taiga-back:latest
environment: *default-back-environment
depends_on:
- taiga-db
entrypoint: “python manage.py”
volumes: *default-back-volumes
networks:
- taiga