Skip to content

Commit ce562a1

Browse files
Upgrade Postgres to 18-alpine and fix volume mount. Closes #3272 (#3275)
* Upgrade Postgres to 17-alpine and fix volume mount (#3272) * Upgrade Postgres to 18-alpine as requested
1 parent 90a87dd commit ce562a1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docker/env_file_postgres_template

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
POSTGRES_PASSWORD=password
22
POSTGRES_USER=user
3-
POSTGRES_DB=intel_owl_db
3+
POSTGRES_DB=intel_owl_db
4+
PGDATA=/var/lib/postgresql/pgdata

docker/postgres.override.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
services:
22

33
postgres:
4-
image: library/postgres:16-alpine
4+
image: library/postgres:18-alpine
55
container_name: intelowl_postgres
66
volumes:
7-
- postgres_data:/var/lib/postgresql/data/
7+
- postgres_data:/var/lib/postgresql
88
env_file:
99
- ./env_file_postgres
1010
healthcheck:

0 commit comments

Comments
 (0)