Skip to content

Commit

Permalink
build(docker): bump postgresql to version 17
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxvd committed Oct 24, 2024
1 parent 8f68078 commit abc8624
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
labels:
- "traefik.enable=true"
- "traefik.http.routers.sbweb.entrypoints=web"
- "traefik.http.routers.sbweb.rule=Host(`sb.localhost`)"
- "traefik.http.routers.sbweb.rule=Host(`${SB_DOMAIN}`)"
- "traefik.http.services.sbweb.loadbalancer.server.port=80"

server:
Expand Down Expand Up @@ -103,7 +103,7 @@ services:
- "traefik.http.services.sbserver.loadbalancer.server.port=5000"

db:
image: postgres:9.4
image: postgis/postgis:17-3.5
environment:
POSTGRES_PASSWORD: 'secret'
POSTGRES_USER: 'smartbirds'
Expand All @@ -120,7 +120,7 @@ services:
test: [ "CMD-SHELL", "redis-cli ping | grep PONG" ]

testdb:
image: postgres:9.4
image: postgres:17.0
restart: no
environment:
POSTGRES_PASSWORD: 'testpass'
Expand Down
2 changes: 1 addition & 1 deletion docker/db-tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:9.4
FROM postgres:17.0

COPY entrypoint.sh /entrypoint.sh

Expand Down

0 comments on commit abc8624

Please sign in to comment.