From 03e18d66ddd00497a6a7f8365747fb31386ccba6 Mon Sep 17 00:00:00 2001 From: Sahap Asci Date: Wed, 23 Oct 2024 19:46:35 +0300 Subject: [PATCH] 12 changed into {{ env.version }} --- 13/alpine3.19/Dockerfile | 6 +++--- 13/alpine3.20/Dockerfile | 6 +++--- 13/bookworm/Dockerfile | 6 +++--- 13/bullseye/Dockerfile | 6 +++--- 14/alpine3.19/Dockerfile | 6 +++--- 14/alpine3.20/Dockerfile | 6 +++--- 14/bookworm/Dockerfile | 6 +++--- 14/bullseye/Dockerfile | 6 +++--- 15/alpine3.19/Dockerfile | 6 +++--- 15/alpine3.20/Dockerfile | 6 +++--- 15/bookworm/Dockerfile | 6 +++--- 15/bullseye/Dockerfile | 6 +++--- 16/alpine3.19/Dockerfile | 6 +++--- 16/alpine3.20/Dockerfile | 6 +++--- 16/bookworm/Dockerfile | 6 +++--- 16/bullseye/Dockerfile | 6 +++--- 17/alpine3.19/Dockerfile | 6 +++--- 17/alpine3.20/Dockerfile | 6 +++--- 17/bookworm/Dockerfile | 6 +++--- 17/bullseye/Dockerfile | 6 +++--- Dockerfile-alpine.template | 6 +++--- Dockerfile-debian.template | 6 +++--- 22 files changed, 66 insertions(+), 66 deletions(-) diff --git a/13/alpine3.19/Dockerfile b/13/alpine3.19/Dockerfile index eb4350a655..5ae66ec3a8 100644 --- a/13/alpine3.19/Dockerfile +++ b/13/alpine3.19/Dockerfile @@ -211,10 +211,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/13/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/13/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -227,7 +227,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/13/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/13/alpine3.20/Dockerfile b/13/alpine3.20/Dockerfile index d365154e29..971e6098a5 100644 --- a/13/alpine3.20/Dockerfile +++ b/13/alpine3.20/Dockerfile @@ -211,10 +211,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/13/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/13/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -227,7 +227,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/13/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/13/bookworm/Dockerfile b/13/bookworm/Dockerfile index 8c9451e1b9..29226ee017 100644 --- a/13/bookworm/Dockerfile +++ b/13/bookworm/Dockerfile @@ -204,10 +204,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/13/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/13/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -220,7 +220,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/13/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/13/bullseye/Dockerfile b/13/bullseye/Dockerfile index c8770da222..0086b17da6 100644 --- a/13/bullseye/Dockerfile +++ b/13/bullseye/Dockerfile @@ -204,10 +204,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/13/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/13/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -220,7 +220,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/13/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/14/alpine3.19/Dockerfile b/14/alpine3.19/Dockerfile index 533e23e6be..3b54dc847a 100644 --- a/14/alpine3.19/Dockerfile +++ b/14/alpine3.19/Dockerfile @@ -214,10 +214,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/14/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/14/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -230,7 +230,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/14/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/14/alpine3.20/Dockerfile b/14/alpine3.20/Dockerfile index 4b89e0d558..6af49e1b0a 100644 --- a/14/alpine3.20/Dockerfile +++ b/14/alpine3.20/Dockerfile @@ -214,10 +214,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/14/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/14/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -230,7 +230,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/14/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/14/bookworm/Dockerfile b/14/bookworm/Dockerfile index 88743d5041..6014461102 100644 --- a/14/bookworm/Dockerfile +++ b/14/bookworm/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/14/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/14/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/14/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/14/bullseye/Dockerfile b/14/bullseye/Dockerfile index a69d4098f9..6ad490a6d2 100644 --- a/14/bullseye/Dockerfile +++ b/14/bullseye/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/14/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/14/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/14/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/15/alpine3.19/Dockerfile b/15/alpine3.19/Dockerfile index e9c2dbb37d..b0c6af2133 100644 --- a/15/alpine3.19/Dockerfile +++ b/15/alpine3.19/Dockerfile @@ -217,10 +217,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/15/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/15/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -233,7 +233,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/15/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/15/alpine3.20/Dockerfile b/15/alpine3.20/Dockerfile index 83e8a4640d..92275822af 100644 --- a/15/alpine3.20/Dockerfile +++ b/15/alpine3.20/Dockerfile @@ -217,10 +217,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/15/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/15/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -233,7 +233,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/15/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/15/bookworm/Dockerfile b/15/bookworm/Dockerfile index 859acbfbdd..1fce3763ac 100644 --- a/15/bookworm/Dockerfile +++ b/15/bookworm/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/15/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/15/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/15/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/15/bullseye/Dockerfile b/15/bullseye/Dockerfile index aff946fa54..53c8ced2c2 100644 --- a/15/bullseye/Dockerfile +++ b/15/bullseye/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/15/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/15/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/15/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/16/alpine3.19/Dockerfile b/16/alpine3.19/Dockerfile index 16f3df5884..9c7a122215 100644 --- a/16/alpine3.19/Dockerfile +++ b/16/alpine3.19/Dockerfile @@ -216,10 +216,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/16/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/16/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -232,7 +232,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/16/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/16/alpine3.20/Dockerfile b/16/alpine3.20/Dockerfile index 33d01092b9..64a6948cf8 100644 --- a/16/alpine3.20/Dockerfile +++ b/16/alpine3.20/Dockerfile @@ -216,10 +216,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/16/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/16/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -232,7 +232,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/16/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/16/bookworm/Dockerfile b/16/bookworm/Dockerfile index 40feae2173..946c991799 100644 --- a/16/bookworm/Dockerfile +++ b/16/bookworm/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/16/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/16/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/16/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/16/bullseye/Dockerfile b/16/bullseye/Dockerfile index fb685497f9..af23b924b0 100644 --- a/16/bullseye/Dockerfile +++ b/16/bullseye/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/16/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/16/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/16/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/17/alpine3.19/Dockerfile b/17/alpine3.19/Dockerfile index 793e3d49c5..50d5308e96 100644 --- a/17/alpine3.19/Dockerfile +++ b/17/alpine3.19/Dockerfile @@ -214,10 +214,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/17/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/17/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -230,7 +230,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/17/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/17/alpine3.20/Dockerfile b/17/alpine3.20/Dockerfile index 4a33b69d48..3888161d98 100644 --- a/17/alpine3.20/Dockerfile +++ b/17/alpine3.20/Dockerfile @@ -214,10 +214,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/17/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/17/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -230,7 +230,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/17/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/17/bookworm/Dockerfile b/17/bookworm/Dockerfile index 21a1f4958d..9cfc83c1b5 100644 --- a/17/bookworm/Dockerfile +++ b/17/bookworm/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/17/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/17/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/17/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/17/bullseye/Dockerfile b/17/bullseye/Dockerfile index a7ff8247c8..5572370d73 100644 --- a/17/bullseye/Dockerfile +++ b/17/bullseye/Dockerfile @@ -202,10 +202,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/17/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/17/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -218,7 +218,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/17/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template index 767923f895..94603c555d 100644 --- a/Dockerfile-alpine.template +++ b/Dockerfile-alpine.template @@ -229,10 +229,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/{{ env.version }}/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/{{ env.version }}/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -245,7 +245,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/{{ env.version }}/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432 diff --git a/Dockerfile-debian.template b/Dockerfile-debian.template index 1fa84903ac..bcafc8c8d2 100644 --- a/Dockerfile-debian.template +++ b/Dockerfile-debian.template @@ -200,10 +200,10 @@ ENTRYPOINT ["docker-entrypoint.sh"] # Shutdown mode" in which any existing sessions are allowed to finish and the # server stops when all sessions are terminated. # -# See https://www.postgresql.org/docs/12/server-shutdown.html for more details +# See https://www.postgresql.org/docs/{{ env.version }}/server-shutdown.html for more details # about available PostgreSQL server shutdown signals. # -# See also https://www.postgresql.org/docs/12/server-start.html for further +# See also https://www.postgresql.org/docs/{{ env.version }}/server-start.html for further # justification of this as the default value, namely that the example (and # shipped) systemd service files use the "Fast Shutdown mode" for service # termination. @@ -216,7 +216,7 @@ STOPSIGNAL SIGINT # STOPSIGNAL and sending SIGKILL (which is likely to cause data corruption). # # The default in most runtimes (such as Docker) is 10 seconds, and the -# documentation at https://www.postgresql.org/docs/12/server-start.html notes +# documentation at https://www.postgresql.org/docs/{{ env.version }}/server-start.html notes # that even 90 seconds may not be long enough in many instances. EXPOSE 5432