From 7bde21bec4f9fe30097c8bd97f497efa3a6fa238 Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Sun, 3 Mar 2024 12:21:04 +0000 Subject: [PATCH] Add some descriptions. --- php/Dockerfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/php/Dockerfile b/php/Dockerfile index 34cd256..90c8928 100644 --- a/php/Dockerfile +++ b/php/Dockerfile @@ -2,7 +2,9 @@ FROM marshall:build AS php-core LABEL maintainer="Matthew Baggett " \ org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \ - org.opencontainers.image.source="https://github.com/benzine-framework/docker" + org.opencontainers.image.source="https://github.com/benzine-framework/docker" \ + org.opencontainers.image.description="Build of Marshall with PHP" + ARG PHP_PACKAGES ARG COMPOSER_VERSION ENV COMPOSER_ALLOW_SUPERUSER=1 @@ -79,7 +81,9 @@ RUN composer --version && \ FROM php-cli AS php-nginx LABEL maintainer="Matthew Baggett " \ org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \ - org.opencontainers.image.source="https://github.com/benzine-framework/docker" + org.opencontainers.image.source="https://github.com/benzine-framework/docker" \ + org.opencontainers.image.description="Build of Marshall with Nginx + PHP" + ARG PHP_VERSION ARG PHP_MEMORY_LIMIT=128M ARG PHP_DATA_MAX_SIZE=1024M @@ -200,7 +204,9 @@ HEALTHCHECK --interval=30s --timeout=3s \ FROM php-cli AS php-apache LABEL maintainer="Matthew Baggett " \ org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \ - org.opencontainers.image.source="https://github.com/benzine-framework/docker" + org.opencontainers.image.source="https://github.com/benzine-framework/docker" \ + org.opencontainers.image.description="Build of Marshall with Apache + PHP" + ARG PHP_VERSION # ts:skip=AC_DOCKER_0002 Mis-detecting usage of apt instead of apt-get RUN apt-get -qq update && \