Docker-Redis/Dockerfile

11 lines
356 B
Text
Raw Normal View History

2021-01-10 14:13:19 +00:00
# From upstream redis
2019-08-13 15:43:49 +00:00
FROM redis:latest
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