mirror of
https://github.com/TheFunny/TelegramTwitterMediaBot.git
synced 2026-09-23 23:32:05 +00:00
23 lines
517 B
Plaintext
23 lines
517 B
Plaintext
version: '3.7'
|
|
services:
|
|
tgxmb:
|
|
build: .
|
|
restart: always
|
|
ports:
|
|
- "8443:8443"
|
|
environment:
|
|
LOCAL_USER_ID: '1000'
|
|
BOT_TOKEN: ''
|
|
BOT_ADMIN: ''
|
|
WEBHOOK: false
|
|
WEBHOOK_LISTEN: '127.0.0.1'
|
|
WEBHOOK_PORT: 8443
|
|
WEBHOOK_URL: 'https://example.com'
|
|
WEBHOOK_KEY: './cert/private.key'
|
|
WEBHOOK_CERT: './cert/cert.pem'
|
|
WEBHOOK_SECRET_TOKEN: 'secret-token'
|
|
# LOG_LEVEL: 'WARNING'
|
|
volumes:
|
|
- ./cert:/app/cert
|
|
container_name: tgxmb
|