From 2761c709b01dec4d83d41d4092865fcd2f329faa Mon Sep 17 00:00:00 2001 From: Sam L Date: Wed, 26 Nov 2025 12:57:10 -0500 Subject: [PATCH] Initial commit, issue-10 Update deprecated Dockerfile instruction `MAINTAINER` to `LABEL` --- build/8.1-apache/Dockerfile | 2 +- build/8.1-apache/xdebug.ini | 11 ++++++----- build/8.1-cli/Dockerfile | 2 +- build/8.1-cli/xdebug.ini | 11 ++++++----- build/8.1-fpm/Dockerfile | 2 +- build/8.1-fpm/xdebug.ini | 11 ++++++----- build/8.2-apache/Dockerfile | 2 +- build/8.2-apache/xdebug.ini | 11 ++++++----- build/8.2-cli/Dockerfile | 2 +- build/8.2-cli/xdebug.ini | 11 ++++++----- build/8.2-fpm/Dockerfile | 2 +- build/8.2-fpm/xdebug.ini | 11 ++++++----- build/8.3-apache/Dockerfile | 2 +- build/8.3-apache/xdebug.ini | 11 ++++++----- build/8.3-cli/Dockerfile | 2 +- build/8.3-cli/xdebug.ini | 11 ++++++----- build/8.3-fpm/Dockerfile | 2 +- build/8.3-fpm/xdebug.ini | 11 ++++++----- src/Dockerfile | 2 +- 19 files changed, 64 insertions(+), 55 deletions(-) diff --git a/build/8.1-apache/Dockerfile b/build/8.1-apache/Dockerfile index 46a257d..5911e10 100644 --- a/build/8.1-apache/Dockerfile +++ b/build/8.1-apache/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.1-apache -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.1-apache/xdebug.ini b/build/8.1-apache/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.1-apache/xdebug.ini +++ b/build/8.1-apache/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.1-cli/Dockerfile b/build/8.1-cli/Dockerfile index 4952ef7..97a60c2 100644 --- a/build/8.1-cli/Dockerfile +++ b/build/8.1-cli/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.1-cli -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.1-cli/xdebug.ini b/build/8.1-cli/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.1-cli/xdebug.ini +++ b/build/8.1-cli/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.1-fpm/Dockerfile b/build/8.1-fpm/Dockerfile index 0e1ffc4..c5dd3a3 100644 --- a/build/8.1-fpm/Dockerfile +++ b/build/8.1-fpm/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.1-fpm -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.1-fpm/xdebug.ini b/build/8.1-fpm/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.1-fpm/xdebug.ini +++ b/build/8.1-fpm/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.2-apache/Dockerfile b/build/8.2-apache/Dockerfile index 2ce61c7..835368d 100644 --- a/build/8.2-apache/Dockerfile +++ b/build/8.2-apache/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.2-apache -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.2-apache/xdebug.ini b/build/8.2-apache/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.2-apache/xdebug.ini +++ b/build/8.2-apache/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.2-cli/Dockerfile b/build/8.2-cli/Dockerfile index 1d3a7e4..9e2d770 100644 --- a/build/8.2-cli/Dockerfile +++ b/build/8.2-cli/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.2-cli -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.2-cli/xdebug.ini b/build/8.2-cli/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.2-cli/xdebug.ini +++ b/build/8.2-cli/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.2-fpm/Dockerfile b/build/8.2-fpm/Dockerfile index ebd39b5..1dd6349 100644 --- a/build/8.2-fpm/Dockerfile +++ b/build/8.2-fpm/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.2-fpm -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.2-fpm/xdebug.ini b/build/8.2-fpm/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.2-fpm/xdebug.ini +++ b/build/8.2-fpm/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.3-apache/Dockerfile b/build/8.3-apache/Dockerfile index 43b5f9c..2e8f47a 100644 --- a/build/8.3-apache/Dockerfile +++ b/build/8.3-apache/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.3-apache -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.3-apache/xdebug.ini b/build/8.3-apache/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.3-apache/xdebug.ini +++ b/build/8.3-apache/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.3-cli/Dockerfile b/build/8.3-cli/Dockerfile index d1ab114..1239a5d 100644 --- a/build/8.3-cli/Dockerfile +++ b/build/8.3-cli/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.3-cli -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.3-cli/xdebug.ini b/build/8.3-cli/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.3-cli/xdebug.ini +++ b/build/8.3-cli/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/build/8.3-fpm/Dockerfile b/build/8.3-fpm/Dockerfile index 92a6f45..ef1ec0f 100644 --- a/build/8.3-fpm/Dockerfile +++ b/build/8.3-fpm/Dockerfile @@ -1,5 +1,5 @@ FROM php:8.3-fpm -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \ diff --git a/build/8.3-fpm/xdebug.ini b/build/8.3-fpm/xdebug.ini index a6c56ff..b04f78c 100644 --- a/build/8.3-fpm/xdebug.ini +++ b/build/8.3-fpm/xdebug.ini @@ -1,13 +1,14 @@ [xdebug] zend_extension=xdebug.so -xdebug.cli_color=1 -xdebug.mode=debug +xdebug.cli_color=0 +xdebug.show_local_vars=1 xdebug.start_with_request=trigger -xdebug.trigger_value=StartXDebug xdebug.output_dir="/tmp" xdebug.profiler_output_name="cachegrind.out.%H.%t.%p" -xdebug.discover_client_host=true -xdebug.client_port=9003 +xdebug.mode=develop,debug +xdebug.discover_client_host=1 +xdebug.client_port=9000 + diff --git a/src/Dockerfile b/src/Dockerfile index 43ad776..50ce653 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,5 +1,5 @@ FROM #BASE_IMAGE# -MAINTAINER Przemek Szalko +LABEL org.opencontainers.image.authors="Przemek Szalko " # php intl extension RUN apt-get update \