1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-11-22 08:14:18 +00:00
todocolors/todopod/compose.yml

29 lines
786 B
YAML
Raw Normal View History

2023-08-04 17:28:46 +00:00
services:
redis:
image: "redis"
restart: unless-stopped
2023-08-04 19:31:04 +00:00
command: >-
redis-server
--save 60 1
--loglevel notice
volumes:
- "./data/redis/rdata:/data"
2023-08-04 17:28:46 +00:00
red:
image: "ghcr.io/steffo99/todocolors-red"
restart: unless-stopped
environment:
REDIS_CONN: "redis://redis:6379/" # You probably don't need to change this
2023-10-09 17:42:57 +00:00
AXUM_XFORWARDED: "TODO-YOUR-PUBLIC-URL-GOES-HERE"
TODORED_RATE_LIMIT_CONNECTIONS_PER_MINUTE: 5
TODORED_RATE_LIMIT_MESSAGES_PER_MINUTE: 100
2023-08-04 17:28:46 +00:00
blue:
image: "ghcr.io/steffo99/todocolors-blue"
restart: unless-stopped
2023-08-05 03:19:13 +00:00
caddy:
image: "caddy"
restart: unless-stopped
volumes:
- "./data/caddy:/data"
- "./config/caddy/Caddyfile:/etc/caddy/Caddyfile"
2023-09-29 07:32:42 +00:00
network_mode: host