Obscure error message but a code instead

Hello all,
In the default docker context :
NAME TYPE DESCRIPTION DOCKER ENDPOINT KUBERNETES ENDPOINT ORCHESTRATOR
default * moby Current DOCKER_HOST based configuration unix:///var/run/docker.sock swarm
I launch docker compose up and then I get an obscure error message with a number, like :
“There was an error starting your server.”
“Please use the error code above to search for a solution.”

Error ID:
b7cebec0-3c0b-11ed-8865-930228148fed

If I use desktop-linux everything is working fine.

  • What’s your URL? This is the easiest way for others to debug your issue
    localhost:2368
  • What version of Ghost are you using?
    5.0
  • What configuration?
    docker
  • What browser?
    chrome
  • What errors or information do you see in the console?
    “There was an error starting your server.”
    “Please use the error code above to search for a solution.”

Error ID:
b7cebec0-3c0b-11ed-8865-930228148fed

  • What steps could someone else take to reproduce the issue you’re having?
    (docker-compose.yml)
    service:
    ghost:
    image: ghost
    container_name: ghost
    hostname: fmjconsulting.fr
    ports:
    - “2368:2368”
    networks:
    - localnet
    links:
    - mysql
    environment:
    NODE_ENV: production
    database__client: mysql
    database__connection__host: “mysql”
    database__connection__port: 3306
    database__connection__user: root
    database__connection__password: changeme # need better solution here : files, git, vault
    database__connection__database: ghost
    volumes:
    - ghostconf:/var/lib/ghost/content
    depends_on:
    mysql:
    condition: service_healthy

Any idea ?