Compare commits

...

5 Commits

Author SHA1 Message Date
Shlee
0b97a42945
Merge b881683320 into 0725afe1a9 2025-11-25 15:03:40 +00:00
Shlee
b881683320
Update docker-compose.yml 2025-11-25 00:04:48 +11:00
Shlee
bfd2d5c621
Update docker-compose.yml 2025-09-26 11:47:32 +00:00
Shlee
c266bab9ea
Merge branch 'main' into patch-11 2024-11-22 14:57:45 +00:00
Shlee
9371f89209
Update docker-compose.yml 2024-11-02 12:15:54 +10:30

View File

@ -4,14 +4,14 @@
services:
db:
restart: always
image: postgres:14-alpine
image: postgres:18-alpine
shm_size: 256mb
networks:
- internal_network
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'postgres']
volumes:
- ./postgres14:/var/lib/postgresql/data
- ./postgres18:/var/lib/postgresql
environment:
- 'POSTGRES_HOST_AUTH_METHOD=trust'