Update file names and remove useless things

This commit is contained in:
2026-02-24 19:39:55 +05:30
parent 9fe8704abe
commit 98617d8a21
55 changed files with 0 additions and 89 deletions

16
.templates/valkey.yaml Normal file
View File

@@ -0,0 +1,16 @@
services:
valkey:
container_name: valkey
image: ghcr.io/valkey-io/valkey:9.0.1
restart: unless-stopped
command: valkey-server --save 60 1 --requirepass ${VALKEY_PASSWORD}
volumes:
- ${APPDATA_PATH}//valkey:/data
ports:
- ${VALKEY_PORT}:6379
healthcheck:
test: ["CMD-SHELL", "echo 'auth ${VALKEY_PASSWORD}\nping' | valkey-cli | grep PONG"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s