From 41109fc6082cfb6fd232fc4a4b291735e40735dc Mon Sep 17 00:00:00 2001 From: -LAN- Date: Sat, 6 Sep 2025 01:09:32 +0800 Subject: [PATCH] chore(docker): set default FILES_URL value for Docker deployment - Set FILES_URL default to http://api:5001 in .env.example - Regenerate docker-compose.yaml with updated defaults - Improves out-of-the-box experience for Docker deployments Fixes #25269 --- docker/.env.example | 2 +- docker/docker-compose.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/.env.example b/docker/.env.example index 96ad09ab99..9e8733628d 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -45,7 +45,7 @@ APP_WEB_URL= # Recommendation: use a dedicated domain (e.g., https://upload.example.com). # Alternatively, use http://:5001 or http://api:5001, # ensuring port 5001 is externally accessible (see docker-compose.yaml). -FILES_URL= +FILES_URL=http://api:5001 # INTERNAL_FILES_URL is used for plugin daemon communication within Docker network. # Set this to the internal Docker service URL for proper plugin file access. diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 9774df3df5..9d4e96ae41 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -10,7 +10,7 @@ x-shared-env: &shared-api-worker-env SERVICE_API_URL: ${SERVICE_API_URL:-} APP_API_URL: ${APP_API_URL:-} APP_WEB_URL: ${APP_WEB_URL:-} - FILES_URL: ${FILES_URL:-} + FILES_URL: ${FILES_URL:-http://api:5001} INTERNAL_FILES_URL: ${INTERNAL_FILES_URL:-} LANG: ${LANG:-en_US.UTF-8} LC_ALL: ${LC_ALL:-en_US.UTF-8}