From ebb7b9d0f10f84ebe995b472a0e185e527200f59 Mon Sep 17 00:00:00 2001 From: Kaloyan Nikolov Date: Tue, 4 Mar 2025 18:12:34 +0200 Subject: [PATCH] Lock examples to PostgreSQL 16 Signed-off-by: Kaloyan Nikolov --- .examples/docker-compose/insecure/postgres/apache/compose.yaml | 2 +- .examples/docker-compose/insecure/postgres/fpm/compose.yaml | 2 +- .../with-nginx-proxy/postgres/apache/compose.yaml | 2 +- .../docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.examples/docker-compose/insecure/postgres/apache/compose.yaml b/.examples/docker-compose/insecure/postgres/apache/compose.yaml index 230b6ad1..3f863303 100644 --- a/.examples/docker-compose/insecure/postgres/apache/compose.yaml +++ b/.examples/docker-compose/insecure/postgres/apache/compose.yaml @@ -2,7 +2,7 @@ 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:alpine + image: postgres:16-alpine restart: always volumes: - db:/var/lib/postgresql/data:Z diff --git a/.examples/docker-compose/insecure/postgres/fpm/compose.yaml b/.examples/docker-compose/insecure/postgres/fpm/compose.yaml index 6d7f7c83..dfe3002f 100644 --- a/.examples/docker-compose/insecure/postgres/fpm/compose.yaml +++ b/.examples/docker-compose/insecure/postgres/fpm/compose.yaml @@ -2,7 +2,7 @@ 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:alpine + image: postgres:16-alpine restart: always volumes: - db:/var/lib/postgresql/data:Z diff --git a/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml b/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml index 34a9946c..a5e98585 100644 --- a/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml +++ b/.examples/docker-compose/with-nginx-proxy/postgres/apache/compose.yaml @@ -2,7 +2,7 @@ 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:alpine + image: postgres:16-alpine restart: always volumes: - db:/var/lib/postgresql/data:Z diff --git a/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml b/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml index 45370d09..2d419ddb 100644 --- a/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml +++ b/.examples/docker-compose/with-nginx-proxy/postgres/fpm/compose.yaml @@ -2,7 +2,7 @@ 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:alpine + image: postgres:16-alpine restart: always volumes: - db:/var/lib/postgresql/data:Z