fix: provide Snell port defaults for initial sync

This commit is contained in:
Codex
2026-07-19 08:56:35 -07:00
parent b90436ea6c
commit 03176a7bd8
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -8,7 +8,7 @@ services:
image: local/snell-server:5.0.1 image: local/snell-server:5.0.1
restart: unless-stopped restart: unless-stopped
ports: ports:
- "${HOST_PORT}:9102/tcp" - "${HOST_PORT:-47854}:9102/tcp"
environment: environment:
PSK: ${PSK} PSK: ${PSK}
PORT: 9102 PORT: 9102
@@ -17,4 +17,3 @@ services:
options: options:
max-size: 200k max-size: 200k
max-file: "2" max-file: "2"
+1 -2
View File
@@ -10,10 +10,9 @@ services:
network_mode: host network_mode: host
environment: environment:
PSK: ${PSK} PSK: ${PSK}
PORT: ${PORT} PORT: ${PORT:-9102}
logging: logging:
driver: json-file driver: json-file
options: options:
max-size: 200k max-size: 200k
max-file: "2" max-file: "2"