This commit is contained in:
Frew777 2026-03-21 07:32:48 +00:00 committed by GitHub
commit c93469a413
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -39,6 +39,8 @@ port = 443
enabled = true enabled = true
listen = "0.0.0.0:9091" listen = "0.0.0.0:9091"
whitelist = ["127.0.0.0/8"] whitelist = ["127.0.0.0/8"]
# Network for Docker Environment
#whitelist = ["127.0.0.0/8", "172.16.0.0/12"]
minimal_runtime_enabled = false minimal_runtime_enabled = false
minimal_runtime_cache_ttl_ms = 1000 minimal_runtime_cache_ttl_ms = 1000

View File

@ -6,7 +6,8 @@ services:
restart: unless-stopped restart: unless-stopped
ports: ports:
- "443:443" - "443:443"
- "127.0.0.1:9090:9090" - "127.0.0.1:9090:9090" # Metrics
- "127.0.0.1:9091:9091" # API
# Allow caching 'proxy-secret' in read-only container # Allow caching 'proxy-secret' in read-only container
working_dir: /run/telemt working_dir: /run/telemt
volumes: volumes:
@ -28,3 +29,8 @@ services:
nofile: nofile:
soft: 65536 soft: 65536
hard: 65536 hard: 65536
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"