Update docker-compose.yml to add telemt-panel service and configure telemt-plus network. Modify SYNC_SETUP.md to change ownership settings from 999:999 to 65532:65532 for improved compatibility and document steps for reconfiguring existing B servers.
Publish telemt-bot Docker image / build-and-push (push) Successful in 35s
Publish telemt-bot Docker image / build-and-push (push) Successful in 35s
This commit is contained in:
@@ -5,6 +5,8 @@ services:
|
||||
dockerfile: Dockerfile
|
||||
container_name: telemt-bot
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
telemt-plus:
|
||||
environment:
|
||||
TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN}
|
||||
TELEGRAM_ADMIN_CHAT_ID: ${TELEGRAM_ADMIN_CHAT_ID}
|
||||
@@ -15,3 +17,24 @@ services:
|
||||
TELEMT_LINK_HOST: ${TELEMT_LINK_HOST}
|
||||
TELEMT_LINK_PORT: ${TELEMT_LINK_PORT:-9443}
|
||||
TELEMT_TLS_DOMAIN: ${TELEMT_TLS_DOMAIN:-}
|
||||
|
||||
telemt-panel:
|
||||
image: ghcr.io/amirotin/telemt_panel:latest
|
||||
container_name: telemt-panel
|
||||
restart: unless-stopped
|
||||
user: "0:0"
|
||||
volumes:
|
||||
- /opt/telemt-plus/telemt-panel-data:/etc/telemt-panel
|
||||
networks:
|
||||
telemt-plus:
|
||||
ipv4_address: 172.20.0.4
|
||||
ports:
|
||||
- "${TELEMT_PANEL_HTTP_PORT:-8080}:8080"
|
||||
|
||||
networks:
|
||||
telemt-plus:
|
||||
driver: bridge
|
||||
ipam:
|
||||
config:
|
||||
- subnet: 172.20.0.0/24
|
||||
gateway: 172.20.0.1
|
||||
|
||||
Reference in New Issue
Block a user