26 lines
676 B
YAML
26 lines
676 B
YAML
services:
|
|
telegram-bot-api:
|
|
image: aiogram/telegram-bot-api:latest
|
|
container_name: telegram-bot-api
|
|
hostname: telegram-bot-api
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
TELEGRAM_HTTP_PORT: "8081"
|
|
TELEGRAM_LOCAL: "1"
|
|
TELEGRAM_PROXY: http://192.168.1.10:10172
|
|
HTTP_PROXY: http://192.168.1.10:10172
|
|
HTTPS_PROXY: http://192.168.1.10:10172
|
|
NO_PROXY: localhost,127.0.0.1,telegram-bot-api,uptime-kuma
|
|
ports:
|
|
- "8081:8081"
|
|
volumes:
|
|
- /opt/data/telegram-bot-api:/var/lib/telegram-bot-api
|
|
networks:
|
|
- telegram-bot-api
|
|
|
|
networks:
|
|
telegram-bot-api:
|
|
name: telegram-bot-api
|