telegrambot/docker-compose.yml
alisaza 54a8dcb283 Add initial Telegram relay service for Iran→foreign delivery.
Thin Hono API so the Iran-hosted backend can POST ops alerts here and this VPS calls Telegram Bot API.
2026-09-13 13:38:36 +03:30

21 lines
359 B
YAML

services:
telegram-relay:
build: .
ports:
- '${PORT:-3100}:3100'
env_file:
- .env
restart: unless-stopped
healthcheck:
test:
[
'CMD',
'wget',
'-qO-',
'http://127.0.0.1:3100/health',
]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s