Bump everything [skip ci]
This commit is contained in:
parent
c1994a319f
commit
9f3a997578
5 changed files with 11 additions and 2 deletions
|
|
@ -1,4 +1,7 @@
|
|||
FROM mariadb:10.6
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
||||
org.label-schema.vcs-url="https://github.com/benzine-framework/docker"
|
||||
|
||||
# Copy healthcheck file.
|
||||
COPY health.sh /usr/bin/healthcheck
|
||||
# Add healthcheck
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
FROM ubuntu:bionic
|
||||
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>"
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
||||
org.label-schema.vcs-url="https://github.com/benzine-framework/docker"
|
||||
|
||||
ENV DEBIAN_FRONTEND="teletype" \
|
||||
TERM=xterm-256color \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
# hadolint ignore=DL3007
|
||||
FROM benzine/marshall:latest AS php-core
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>"
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
||||
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"]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
# From upstream redis
|
||||
# hadolint ignore=DL3007
|
||||
FROM redis:latest
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
||||
org.label-schema.vcs-url="https://github.com/benzine-framework/docker"
|
||||
# Add healthcheck
|
||||
HEALTHCHECK --interval=30s --timeout=3s \
|
||||
CMD redis-cli PING
|
||||
|
|
@ -1,4 +1,6 @@
|
|||
FROM benzine/php:nginx
|
||||
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
||||
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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue