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 deployments/docker/patroni/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:16-alpine
FROM postgres:18-alpine

RUN apk add --no-cache python3 py3-pip curl && \
pip3 install --no-cache-dir --break-system-packages patroni[etcd3]==3.3.2 psycopg2-binary
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ x-rust-service: &rust-service

services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
container_name: csfx-postgres-dev
environment:
POSTGRES_USER: ${POSTGRES_USER:-csfx_user}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.failover-controller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ x-rust-common: &rust-common

services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
container_name: csfx-postgres-failover
environment:
POSTGRES_USER: csfx_user
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
container_name: csfx-postgres
environment:
POSTGRES_USER: ${POSTGRES_USER}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ x-rust-common: &rust-common

services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
container_name: csfx-postgres-registry
environment:
POSTGRES_USER: csfx_user
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ x-rust-common: &rust-common

services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
container_name: csfx-postgres-scheduler
environment:
POSTGRES_USER: csfx_user
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.sdn-controller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ x-rust-common: &rust-common

services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
container_name: csfx-postgres-sdn
environment:
POSTGRES_USER: csfx_user
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.volume-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ x-rust-common: &rust-common

services:
postgres:
image: postgres:16-alpine
image: postgres:18-alpine
container_name: csfx-postgres-volumes
environment:
POSTGRES_USER: csfx_user
Expand Down
Loading