Skip to content

Commit 6175af6

Browse files
authored
fix(core): adapt postgres-data volume location to postgres 18+ (docker-library/postgres#1259) (#12575)
1 parent 86dead7 commit 6175af6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker-compose-dind.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ volumes:
1515

1616
services:
1717
postgres:
18-
image: postgres
18+
image: postgres:18
1919
volumes:
20-
- postgres-data:/var/lib/postgresql/data
20+
- postgres-data:/var/lib/postgresql/18/docker
2121
environment:
2222
POSTGRES_DB: kestra
2323
POSTGRES_USER: kestra

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ volumes:
66

77
services:
88
postgres:
9-
image: postgres
9+
image: postgres:18
1010
volumes:
11-
- postgres-data:/var/lib/postgresql/data
11+
- postgres-data:/var/lib/postgresql/18/docker
1212
environment:
1313
POSTGRES_DB: kestra
1414
POSTGRES_USER: kestra

0 commit comments

Comments
 (0)