docs(examples): rename cache service in compose examples to match CACHE env

This commit is contained in:
2026-09-12 15:02:20 +02:00
parent b5c5629cca
commit c3c6e96774
3 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -16,7 +16,7 @@ networks:
external: true
services:
redis:
cache:
image: valkey/valkey:7-alpine
# This is required to stay in RAM only.
command: valkey-server --save "" --appendonly no
@@ -31,7 +31,7 @@ services:
image: cupcakearmy/cryptgeon:latest
restart: unless-stopped
depends_on:
- redis
- cache
networks:
- default
- proxy
@@ -60,7 +60,7 @@ services:
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
redis:
cache:
image: valkey/valkey:7-alpine
# This is required to stay in RAM only.
command: valkey-server --save "" --appendonly no
@@ -74,7 +74,7 @@ services:
cryptgeon:
image: cupcakearmy/cryptgeon
depends_on:
- redis
- cache
labels:
- "traefik.enable=true"
- "traefik.http.routers.cryptgeon.rule=Host(`cryptgeon.localhost`)"