Open mikobski opened 8 months ago
Hi, I had following error when running open project with docker-compose:
initdb: error: The program "postgres" is needed by initdb but was not found in the
To fix that I had to change: services: db: image: postgres:13 to: services: db: image: postgres:13-bullseye
services: db: image: postgres:13
services: db: image: postgres:13-bullseye
Please take a look into that issue.
Hi, I had following error when running open project with docker-compose:
initdb: error: The program "postgres" is needed by initdb but was not found in the
To fix that I had to change:
services: db: image: postgres:13
to:services: db: image: postgres:13-bullseye
Please take a look into that issue.