Compare commits

...

2 Commits

Author SHA1 Message Date
Aymeric GUERACAGUE 1e1acef8ea
fix: xdebug was already enable 2025-12-21 01:32:03 +01:00
Aymeric GUERACAGUE c6b0d91041
fix: postgres docker volume 2025-12-21 01:31:51 +01:00
2 changed files with 4 additions and 1 deletions

View File

@ -38,9 +38,13 @@ services:
postgres: postgres:
image: postgres:18.1 image: postgres:18.1
volumes: volumes:
- postgres_data:/var/lib/postgresql
- ./docker/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d - ./docker/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
environment: environment:
- POSTGRES_USER=postgres - POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres - POSTGRES_PASSWORD=postgres
ports: ports:
- '5432:5432' - '5432:5432'
volumes:
postgres_data:

View File

@ -1,4 +1,3 @@
zend_extension=xdebug
xdebug.mode=debug xdebug.mode=debug
xdebug.client_host=host.docker.internal xdebug.client_host=host.docker.internal
xdebug.start_with_request=yes xdebug.start_with_request=yes