From 57719f3ce9401195b6f9f8b3ddfc580fab0734cd Mon Sep 17 00:00:00 2001 From: Yeuoly Date: Thu, 30 Oct 2025 22:21:14 +0800 Subject: [PATCH] fix: docker env --- 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 1709d17b67..93a6261c76 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -27,7 +27,7 @@ SERVICE_API_URL= # Trigger external URL # used to display trigger endpoint API Base URL to the front-end. # Example: https://api.dify.ai -TRIGGER_URL= +TRIGGER_URL=http://localhost # WebApp API backend Url, # used to declare the back-end URL for the front-end API. diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 3cff6a5c84..f4256c8b71 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -8,7 +8,7 @@ x-shared-env: &shared-api-worker-env CONSOLE_API_URL: ${CONSOLE_API_URL:-} CONSOLE_WEB_URL: ${CONSOLE_WEB_URL:-} SERVICE_API_URL: ${SERVICE_API_URL:-} - TRIGGER_URL: ${TRIGGER_URL:-} + TRIGGER_URL: ${TRIGGER_URL:-http://localhost} APP_API_URL: ${APP_API_URL:-} APP_WEB_URL: ${APP_WEB_URL:-} FILES_URL: ${FILES_URL:-}