shaiwatcher/docker-compose.yml
2025-08-09 15:57:28 +02:00

21 lines
470 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: "3.8"
services:
shaiwatcher:
build:
context: .
dockerfile: dockerfile
container_name: shaiwatcher
restart: unless-stopped
environment:
- DISCORD_TOKEN=${DISCORD_TOKEN}
# optional: set timezone
- TZ=UTC
volumes:
# Persist your JSON data here
- shaiwatcher_data:/app/data
# use your repos settings.conf at runtime
- ./settings.conf:/app/settings.conf:ro
volumes:
shaiwatcher-data: