2024-08-07 09:49:51 +00:00
|
|
|
# checkov:skip=CKV_DOCKER_3 Redis upstream doesn't care so nor do I.
|
|
|
|
FROM redis:version
|
2024-05-17 09:19:40 +00:00
|
|
|
|
|
|
|
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
|
|
|
|
org.label-schema.vcs-url="https://github.com/benzine-framework/docker-redis" \
|
|
|
|
org.opencontainers.image.source="https://github.com/benzine-framework/docker-redis"
|
|
|
|
|
2019-08-13 15:43:49 +00:00
|
|
|
# Add healthcheck
|
|
|
|
HEALTHCHECK --interval=30s --timeout=3s \
|
2024-05-17 09:19:40 +00:00
|
|
|
CMD redis-cli PING
|