From 02ab2819a52b97722de735fdfda986f6cfc9739e Mon Sep 17 00:00:00 2001 From: Patryk Zawadzki Date: Tue, 28 May 2024 18:52:40 +0200 Subject: [PATCH] Use PostgreSQL 15 Important: PostgreSQL 15 won't be able to read databases created using PostgreSQL 13. You need to upgrade any existing databases yourself. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 202098e66..c0291de74 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,7 +32,7 @@ services: restart: unless-stopped db: - image: library/postgres:13-alpine + image: library/postgres:15-alpine ports: - 5432:5432 restart: unless-stopped