From 9f3a9975784dd423273cdb5ff08f4522d8d2d922 Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Sun, 30 May 2021 16:00:16 +0200 Subject: [PATCH] Bump everything [skip ci] --- mariadb/Dockerfile | 3 +++ marshall/Dockerfile | 3 ++- php/Dockerfile.Core | 3 ++- redis/Dockerfile | 2 ++ wordpress/Dockerfile | 2 ++ 5 files changed, 11 insertions(+), 2 deletions(-) diff --git a/mariadb/Dockerfile b/mariadb/Dockerfile index 4f6eac1..4c1487a 100644 --- a/mariadb/Dockerfile +++ b/mariadb/Dockerfile @@ -1,4 +1,7 @@ FROM mariadb:10.6 +LABEL maintainer="Matthew Baggett " \ + org.label-schema.vcs-url="https://github.com/benzine-framework/docker" + # Copy healthcheck file. COPY health.sh /usr/bin/healthcheck # Add healthcheck diff --git a/marshall/Dockerfile b/marshall/Dockerfile index 1160a2f..e9d2fbe 100644 --- a/marshall/Dockerfile +++ b/marshall/Dockerfile @@ -1,6 +1,7 @@ FROM ubuntu:bionic -LABEL maintainer="Matthew Baggett " +LABEL maintainer="Matthew Baggett " \ + org.label-schema.vcs-url="https://github.com/benzine-framework/docker" ENV DEBIAN_FRONTEND="teletype" \ TERM=xterm-256color \ diff --git a/php/Dockerfile.Core b/php/Dockerfile.Core index 0004200..a967e78 100644 --- a/php/Dockerfile.Core +++ b/php/Dockerfile.Core @@ -1,6 +1,7 @@ # hadolint ignore=DL3007 FROM benzine/marshall:latest AS php-core -LABEL maintainer="Matthew Baggett " +LABEL maintainer="Matthew Baggett " \ + org.label-schema.vcs-url="https://github.com/benzine-framework/docker" ARG PHP_PACKAGES COPY php-core/install-report.sh /usr/bin/install-report SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/redis/Dockerfile b/redis/Dockerfile index 4cba782..53e2dab 100644 --- a/redis/Dockerfile +++ b/redis/Dockerfile @@ -1,6 +1,8 @@ # From upstream redis # hadolint ignore=DL3007 FROM redis:latest +LABEL maintainer="Matthew Baggett " \ + org.label-schema.vcs-url="https://github.com/benzine-framework/docker" # Add healthcheck HEALTHCHECK --interval=30s --timeout=3s \ CMD redis-cli PING \ No newline at end of file diff --git a/wordpress/Dockerfile b/wordpress/Dockerfile index 8cc2dbe..22447ae 100644 --- a/wordpress/Dockerfile +++ b/wordpress/Dockerfile @@ -1,4 +1,6 @@ FROM benzine/php:nginx +LABEL maintainer="Matthew Baggett " \ + org.label-schema.vcs-url="https://github.com/benzine-framework/docker" COPY nginx.runit /etc/service/nginx/run RUN wget -O /usr/local/bin/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \ chmod +x /etc/service/nginx/run \