Skip to content
Open
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 postgres/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
container_name: "postgres"
# Pinned to 17: the postgres-data volume holds a PG17 cluster in the pre-18
# layout (PGDATA directly at /var/lib/postgresql/data). Postgres 18+ refuses
# to start against that layout (docker-library/postgres#1259). To move to 18,

Check failure on line 15 in postgres/docker-compose.yaml

View workflow job for this annotation

GitHub Actions / Lint

15:81 [line-length] line too long (81 > 80 characters)
# run a proper 17->18 pg_upgrade first. See AGENTS.md / stacks README.
image: postgres:17
image: postgres:18
networks:
- default
volumes:
Expand Down
2 changes: 1 addition & 1 deletion stacks/infrastructure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ services:
memory: 512M
cpus: '0.50'
postgres:
image: postgres:17
image: postgres:18
networks:
default:
aliases:
Expand Down
Loading