Files
Excommunicado/docker-compose.yml
T
2026-06-09 06:50:38 -04:00

21 lines
451 B
YAML

services:
excommunicado:
build: .
container_name: excommunicado-bot
restart: unless-stopped
env_file:
- .env
volumes:
- ./data:/app/data
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
healthcheck:
test: ["CMD", "python", "-c", "import sys; sys.exit(0)"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s