Installation issues passbolt website do not work

Hi, I have a problem with passbolt, when I go to the url, the website just turns white. I have downloaded the error message and put it down there. I don’t know what it means but it’s very red :slight_smile:

I am running server on ubuntu 22.10 and docker 20.10.22 and docker-compose 1.29.2 and to get https I use traffic 2.6

Password: 123456

Logs: Download Logs.rar from Sendspace.com - send big files the easy way

Hope someone can help me I would be very grateful

Hey @Jalle welcome to the forum. Generally speaking we prefer posting the log snippets instead of using a download software.

Could you share the configuration from your docker-compose file? Just be sure to remove any passwords present before posting

version: ‘3.9’
services:
db:
image: mariadb:10.3
restart: unless-stopped
environment:
MYSQL_RANDOM_ROOT_PASSWORD: “true”
MYSQL_DATABASE: “”
MYSQL_USER: “”
MYSQL_PASSWORD: “”
volumes:
- database_volume:/var/lib/mysql

passbolt:
image: passbolt/passbolt:latest-ce
#Alternatively you can use rootless:
#image: passbolt/passbolt:latest-ce-non-root
restart: unless-stopped
depends_on:
- db
environment:
APP_FULL_BASE_URL: ???
DATASOURCES_DEFAULT_HOST: “db”
DATASOURCES_DEFAULT_USERNAME: “”
DATASOURCES_DEFAULT_PASSWORD: “”
DATASOURCES_DEFAULT_DATABASE: “”
volumes:
- gpg_volume:/etc/passbolt/gpg
- jwt_volume:/etc/passbolt/jwt
command: [“/usr/bin/wait-for.sh”, “-t”, “0”, “db:3306”, “–”, “/docker-entrypoint.sh”]
labels:
traefik.enable: “true”
traefik.http.routers.passbolt-http.entrypoints: “web”
traefik.http.routers.passbolt-http.rule: “Host(???)”
traefik.http.routers.passbolt-http.middlewares: “SslHeader@file”
traefik.http.routers.passbolt-https.middlewares: “SslHeader@file”
traefik.http.routers.passbolt-https.entrypoints: “websecure”
traefik.http.routers.passbolt-https.rule: “Host(???)”
traefik.http.routers.passbolt-https.tls: “true”
traefik.http.routers.passbolt-https.tls.certresolver: “letsencrypt”
#Alternatively for non-root images:
# - 80:8080
# - 443:4433
traefik:
image: traefik:2.6
restart: always
ports:
- 80:80
- 443:443
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./traefik.yaml:/traefik.yaml:ro
- ./conf/:/etc/traefik/conf
- ./shared/:/shared
volumes:
database_volume:
gpg_volume:
jwt_volume: