From 3da9abd0234ce1bc3cea73220b98117946dac987 Mon Sep 17 00:00:00 2001 From: Kaloyan Nikolov Date: Fri, 18 Apr 2025 17:14:57 +0300 Subject: [PATCH] Update .examples/docker-compose/insecure/postgres/apache/compose.yaml Co-authored-by: J0WI Signed-off-by: Kaloyan Nikolov --- .examples/docker-compose/insecure/postgres/apache/compose.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.examples/docker-compose/insecure/postgres/apache/compose.yaml b/.examples/docker-compose/insecure/postgres/apache/compose.yaml index 3f863303..66763c34 100644 --- a/.examples/docker-compose/insecure/postgres/apache/compose.yaml +++ b/.examples/docker-compose/insecure/postgres/apache/compose.yaml @@ -2,7 +2,8 @@ services: # Note: PostgreSQL is an external service. You can find more information about the configuration here: # https://github.com/docker-library/docs/blob/master/postgres/README.md db: - image: postgres:16-alpine + # Note: Check the recommend version here: https://docs.nextcloud.com/server/latest/admin_manual/installation/system_requirements.html#server + image: postgres:alpine restart: always volumes: - db:/var/lib/postgresql/data:Z