Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
- db

db:
image: postgres:18-alpine
image: postgres:17-alpine
environment:
POSTGRES_DB: defguard
POSTGRES_USER: defguard
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.ldap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ services:
- NET_ADMIN

db:
image: postgres:18-alpine
image: postgres:17-alpine
environment:
POSTGRES_DB: defguard
POSTGRES_USER: defguard
POSTGRES_PASSWORD: defguard
volumes:
- ./.volumes/db:/var/lib/postgresql
- ./.volumes/db:/var/lib/postgresql/data
ports:
- "5432:5432"

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ services:
RUST_BACKTRACE: 1

db:
image: postgres:18-alpine
image: postgres:17-alpine
environment:
POSTGRES_DB: defguard
POSTGRES_USER: defguard
POSTGRES_PASSWORD: defguard
volumes:
- ./.volumes/db:/var/lib/postgresql
- ./.volumes/db:/var/lib/postgresql/data
ports:
- "5432:5432"
healthcheck:
Expand Down
Loading