refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+5
View File
@@ -0,0 +1,5 @@
# redis
## Overview
Docker Hub: https://hub.docker.com/_/redis
+8
View File
@@ -0,0 +1,8 @@
services:
redis:
image: ${REDIS_IMAGE:-redis:alpine}
restart: unless-stopped
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 20s
timeout: 3s
+5
View File
@@ -0,0 +1,5 @@
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# redis
REDIS_IMAGE=redis:alpine