Docker-Swarm-Loadbalancer/mariadb/Dockerfile

15 lines
608 B
Text
Raw Normal View History

2024-02-15 00:38:21 +00:00
# checkov:skip=CKV_DOCKER_3 We're not adding a user, its coming down from on-high in mariadb.
2024-02-12 17:51:25 +00:00
FROM mariadb:injected-version
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \
org.opencontainers.image.source="https://github.com/benzine-framework/docker"
# If healthcheck.sh isn't baked into the underlying image, crash.
RUN which healthcheck.sh
# Add healthcheck
2024-02-15 00:35:46 +00:00
HEALTHCHECK --start-period=30s --interval=10s --timeout=30s --retries=3 \
2024-02-12 17:51:25 +00:00
CMD ["healthcheck.sh", "--su-mysql", "--connect", "--innodb_initialized"]