From 0e9b856a3195ec8de62cc373dc8f204fc9afaa26 Mon Sep 17 00:00:00 2001 From: MyUncleSam <12820919+MyUncleSam@users.noreply.github.com> Date: Mon, 13 Oct 2025 16:42:21 +0200 Subject: [PATCH 1/2] switch readme to bind docker webdav port by default to localhost to avoid opening it by accident to remote hosts --- docker/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/README.md b/docker/README.md index 96b574bc..24466d5b 100644 --- a/docker/README.md +++ b/docker/README.md @@ -23,7 +23,7 @@ services: WEBDAV_PORT: "" # (Optional) WebDAV port. Defaults to 3005 if empty WEBDAV_PROTOCOL: "" # (Optional) WebDAV protocol. Accepts 'http' or 'https'. Defaults to 'https' if empty ports: - - "3005:3005" # Map container port to host. Change if WEBDAV_PORT is customized + - "127.0.0.1:3005:3005" # Map container port to host. Change if WEBDAV_PORT is customized ``` Start it detached with: @@ -44,7 +44,7 @@ docker run -d \ -e INXT_OTPTOKEN="" \ -e WEBDAV_PORT="" \ -e WEBDAV_PROTOCOL="" \ - -p 3005:3005 \ + -p 127.0.0.1:3005:3005 \ internxt/webdav:latest ``` From 298d8d54dbc3bb0ef9fda9f9c46b2b11bd76159e Mon Sep 17 00:00:00 2001 From: MyUncleSam <12820919+MyUncleSam@users.noreply.github.com> Date: Mon, 13 Oct 2025 16:45:39 +0200 Subject: [PATCH 2/2] adjust comments in line again --- docker/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docker/README.md b/docker/README.md index 24466d5b..d818df76 100644 --- a/docker/README.md +++ b/docker/README.md @@ -16,14 +16,14 @@ services: container_name: internxt-webdav restart: unless-stopped environment: - INXT_USER: "" # Your Internxt account email - INXT_PASSWORD: "" # Your Internxt account password - INXT_TWOFACTORCODE: "" # (Optional) Current 2FA one-time code - INXT_OTPTOKEN: "" # (Optional) OTP secret for auto-generating 2FA codes - WEBDAV_PORT: "" # (Optional) WebDAV port. Defaults to 3005 if empty - WEBDAV_PROTOCOL: "" # (Optional) WebDAV protocol. Accepts 'http' or 'https'. Defaults to 'https' if empty + INXT_USER: "" # Your Internxt account email + INXT_PASSWORD: "" # Your Internxt account password + INXT_TWOFACTORCODE: "" # (Optional) Current 2FA one-time code + INXT_OTPTOKEN: "" # (Optional) OTP secret for auto-generating 2FA codes + WEBDAV_PORT: "" # (Optional) WebDAV port. Defaults to 3005 if empty + WEBDAV_PROTOCOL: "" # (Optional) WebDAV protocol. Accepts 'http' or 'https'. Defaults to 'https' if empty ports: - - "127.0.0.1:3005:3005" # Map container port to host. Change if WEBDAV_PORT is customized + - "127.0.0.1:3005:3005" # Map container port to host. Change if WEBDAV_PORT is customized ``` Start it detached with: