From b9234b427935148b3e95072c7e2c94b615196310 Mon Sep 17 00:00:00 2001 From: arch3rPro <30855883+arch3rPro@users.noreply.github.com> Date: Wed, 16 Jul 2025 13:52:14 +0800 Subject: [PATCH] feat: fix dify env file --- apps/dify/1.6.0/{env/.env => dify.env} | 0 apps/dify/1.6.0/docker-compose.yml | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) rename apps/dify/1.6.0/{env/.env => dify.env} (100%) diff --git a/apps/dify/1.6.0/env/.env b/apps/dify/1.6.0/dify.env similarity index 100% rename from apps/dify/1.6.0/env/.env rename to apps/dify/1.6.0/dify.env diff --git a/apps/dify/1.6.0/docker-compose.yml b/apps/dify/1.6.0/docker-compose.yml index 820ca7a..eb3d1c2 100644 --- a/apps/dify/1.6.0/docker-compose.yml +++ b/apps/dify/1.6.0/docker-compose.yml @@ -520,7 +520,7 @@ services: api: image: langgenius/dify-api:1.6.0 env_file: - - "./env/.env" + - dify.env restart: always environment: # Use the shared environment variables. @@ -551,7 +551,7 @@ services: worker: image: langgenius/dify-api:1.6.0 env_file: - - "./env/.env" + - dify.env restart: always environment: # Use the shared environment variables. @@ -580,7 +580,7 @@ services: image: langgenius/dify-web:1.6.0 container_name: ${CONTAINER_NAME} env_file: - - "./env/.env" + - dify.env restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-} @@ -607,7 +607,7 @@ services: db: image: postgres:15-alpine env_file: - - "./env/.env" + - dify.env restart: always environment: POSTGRES_USER: ${POSTGRES_USER:-postgres} @@ -632,7 +632,7 @@ services: redis: image: redis:6-alpine env_file: - - "./env/.env" + - dify.env restart: always environment: REDISCLI_AUTH: ${REDIS_PASSWORD:-difyai123456} @@ -648,7 +648,7 @@ services: sandbox: image: langgenius/dify-sandbox:0.2.12 env_file: - - "./env/.env" + - dify.env restart: always environment: # The DifySandbox configurations @@ -674,7 +674,7 @@ services: plugin_daemon: image: langgenius/dify-plugin-daemon:0.1.3-local env_file: - - "./env/.env" + - dify.env restart: always environment: # Use the shared environment variables. @@ -735,7 +735,7 @@ services: ssrf_proxy: image: ubuntu/squid:latest env_file: - - "./env/.env" + - dify.env restart: always volumes: - ./ssrf_proxy/squid.conf.template:/etc/squid/squid.conf.template @@ -757,7 +757,7 @@ services: nginx: image: nginx:latest env_file: - - "./env/.env" + - dify.env restart: always volumes: - ./nginx/nginx.conf.template:/etc/nginx/nginx.conf.template @@ -798,7 +798,7 @@ services: weaviate: image: semitechnologies/weaviate:1.19.0 env_file: - - "./env/.env" + - dify.env profiles: - '' - weaviate