15 lines
349 B
YAML
15 lines
349 B
YAML
services:
|
|
heic-bot:
|
|
image:
|
|
build: .
|
|
container_name: heic-converter
|
|
environment:
|
|
- BOT_TOKEN=${BOT_TOKEN}
|
|
ports:
|
|
- "8000:8000" # Prometheus Metrics
|
|
- "8080:8080" # Health Checks
|
|
volumes:
|
|
# Optional: mount a local folder if you want to log to file
|
|
- ./logs:/app/logs
|
|
restart: unless-stopped
|