Simple Docker image for Valkey stats.
990
amd64 only.docker pull docker.io/l33tlamer/valkeystats:latestYou should provide your Valkey/Redis instance info either through environment variables (single instance only) or through config file (multiple instances possible).
Without either, a default of localhost:6379 will be used.
You can download a template config from the Github repo or copy it out of the container: docker cp valkeystats:/var/www/html/config.template.php ./config.php
Usage examples:
docker run -d --name valkeystats -p 8080:8080 l33tlamer/valkeystats
docker run -d --name valkeystats -e -e VALKEY_NAME=Valkey VALKEY_HOST=192.168.20.50 -e VALKEY_PORT=6379 -p 8080:8080 l33tlamer/valkeystats
docker run -d --name valkeystats -v config.php:/var/www/html/config.php -p 8080:8080 l33tlamer/valkeystats
For a example docker-compose.yml file and more details, see github.com/l33tlamer/valkeystats.
Dockerfile used:
FROM trafex/php-nginx:3.11.1
WORKDIR /var/www/html
USER nobody
COPY --chown=nobody ./ /var/www/html
LABEL org.opencontainers.image.created="2026-06-06T14:55:28Z"
LABEL org.opencontainers.image.version="3.11.1"
LABEL org.opencontainers.image.authors="l33tlamer"
LABEL org.opencontainers.image.vendor="l33tlamer"
LABEL org.opencontainers.image.url="https://github.com/l33tlamer/valkeystats"
LABEL org.opencontainers.image.documentation="https://github.com/l33tlamer/valkeystats"
LABEL org.opencontainers.image.source="https://github.com/l33tlamer/valkeystats"
LABEL org.opencontainers.image.title="Valkey stats"
LABEL org.opencontainers.image.description="A very basic Docker image for Valkey stats."
EXPOSE 8080
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
HEALTHCHECK --start-period=60s --start-interval=10s --interval=20s --timeout=3s --retries=3 CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1
Built with: docker buildx build --push --no-cache --platform linux/amd64 --tag docker.io/l33tlamer/valkeystats:latest .
Content type
Image
Digest
sha256:80269fe46…
Size
44.9 MB
Last updated
4 months ago
docker pull l33tlamer/valkeystats