updated wallabag and added redis

This commit is contained in:
2024-08-17 21:55:09 -07:00
parent 27730a012f
commit e43b301711
10 changed files with 97 additions and 108 deletions
+6
View File
@@ -0,0 +1,6 @@
# redis
Last Updated: Sat August 17, 2024 14:55:08 PDT
## Overview
Docker Hub: https://hub.docker.com/_/redis
+10
View File
@@ -0,0 +1,10 @@
version: '3.8'
services:
redis:
image: ${REDIS_IMAGE:-redis:alpine}
restart: unless-stopped
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 20s
timeout: 3s
+7
View File
@@ -0,0 +1,7 @@
version: '3.4'
services:
redis:
extends:
file: ${COOKBOOK}/redis/docker-compose.yml
service: redis
+5
View File
@@ -0,0 +1,5 @@
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# redis
REDIS_IMAGE=redis:alpine