mirror of
https://github.com/Steffo99/todocolors.git
synced 2024-11-22 16:24:19 +00:00
24 lines
606 B
YAML
24 lines
606 B
YAML
services:
|
|
redis:
|
|
image: "redis"
|
|
restart: unless-stopped
|
|
command: >-
|
|
redis-server
|
|
--save 60 1
|
|
--loglevel notice
|
|
volumes:
|
|
- "./data/redis/rdata:/data"
|
|
red:
|
|
image: "ghcr.io/steffo99/todocolors-red"
|
|
restart: unless-stopped
|
|
environment:
|
|
REDIS_CONN: "redis://redis:6379/" # You probably don't need to change this
|
|
blue:
|
|
image: "ghcr.io/steffo99/todocolors-blue"
|
|
restart: unless-stopped
|
|
caddy:
|
|
image: "caddy"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- "./data/caddy:/data"
|
|
- "./config/caddy/Caddyfile:/etc/caddy/Caddyfile"
|