fix: use variable BIND_IP in hostPort for SMB ports

This commit is contained in:
2026-03-09 18:19:14 +00:00
parent 0ffb0f7256
commit a16b5a232e
2 changed files with 10 additions and 2 deletions

View File

@@ -9,11 +9,11 @@
"hostname": "nas",
"addPorts": [
{
"hostPort": "192.168.0.15:445",
"hostPort": "${BIND_IP}:445",
"containerPort": 445
},
{
"hostPort": "192.168.0.15:139",
"hostPort": "${BIND_IP}:139",
"containerPort": 139
}
],