Skip to content

Commit

Permalink
chore: update postgres version
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvanherwijnen committed Oct 7, 2024
1 parent 2d9a23b commit 556730c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker-compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
version: "3.7"
services:
database:
image: postgres:15
image: postgres
restart: always
ports:
- "5433:5432"
Expand Down Expand Up @@ -56,6 +55,7 @@ services:
MAIL_FROM: ${MAIL_FROM}
MAIL_USER: ${MAIL_USER}
MAIL_PASS: ${MAIL_PASS}
OIDC_COOKIES_KEYS: 7JOoAPoC5232uJiUdDd+7EUuyFFcZqQJwsAQDnoldZI=
OTP_SECRET_FILE: nonsecure
OTP_VALIDITY_SECONDS: 3600
EMAIL_FOOTER: "SlimFact dev"
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.7"
services:
caddy:
image: lucaslorentz/caddy-docker-proxy:ci-alpine
Expand All @@ -18,7 +17,7 @@ services:
- web

database:
image: postgres:15
image: postgres
ports:
- "5432:5432"
environment:
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.9"
services:
api:
image: "ghcr.io/simsustech/slimfact"
Expand Down Expand Up @@ -59,7 +58,7 @@ services:
restart: unless-stopped

database:
image: postgres:15
image: postgres
environment:
POSTGRES_PASSWORD_FILE: /run/secrets/POSTGRES_PASSWORD
POSTGRES_DB: ${POSTGRES_DB}
Expand Down

0 comments on commit 556730c

Please sign in to comment.