Skip to content
4 changes: 2 additions & 2 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
replicas: ${POSTGRES_ENABLED:-0}

redis:
image: redis:5.0
image: redis:8.2.2
networks:
default: {}
sysctls:
Expand All @@ -44,7 +44,7 @@ services:
test: ["CMD", "redis-cli", "--raw", "incr", "ping"]

gobgp:
image: jauderho/gobgp:v3.33.0
image: jauderho/gobgp:v3.37.0
networks:
default: {}
sysctls:
Expand Down
2 changes: 1 addition & 1 deletion compose/local/translator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim-bookworm
FROM python:3.13-slim-bookworm

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
2 changes: 1 addition & 1 deletion compose/production/postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG POSTGRES_IMAGE_VER=12.3
ARG POSTGRES_IMAGE_VER=18

FROM postgres:${POSTGRES_IMAGE_VER}

Expand Down
Loading