Thin Hono API so the Iran-hosted backend can POST ops alerts here and this VPS calls Telegram Bot API.
21 lines
359 B
YAML
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
|