Files
docker-compose/.templates/valkey-without-pswd.yml
T

17 lines
398 B
YAML
Raw Normal View History

2026-01-26 13:25:23 +05:30
services:
valkey:
container_name: valkey
2026-02-06 22:52:18 +05:30
image: ghcr.io/valkey-io/valkey:9.0.1
2026-01-26 13:25:23 +05:30
restart: unless-stopped
command: valkey-server --save 60 1
volumes:
- ${APPDATA_PATH}//valkey:/data
ports:
- ${VALKEY_PORT}:6379
healthcheck:
test: ["CMD-SHELL", valkey-cli ping | grep PONG"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s