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