浏览代码

chore(docker-compose): use proper comment indentation for users to easily toggle on and off features (#1648)

Signed-off-by: Neko Ayaka <neko@ayaka.moe>
tags/0.3.33
Neko Ayaka 1年前
父节点
当前提交
0e04fcc071
没有帐户链接到提交者的电子邮件
共有 2 个文件被更改,包括 37 次插入37 次删除
  1. 12
    12
      docker/docker-compose.middleware.yaml
  2. 25
    25
      docker/docker-compose.yaml

+ 12
- 12
docker/docker-compose.middleware.yaml 查看文件

@@ -52,15 +52,15 @@ services:
- "8080:8080"

# Qdrant vector store.
# uncomment to use qdrant as vector store.
# (if uncommented, you need to comment out the weaviate service above,
# and set VECTOR_STORE to qdrant in the api & worker service.)
# qdrant:
# image: qdrant/qdrant:latest
# restart: always
# volumes:
# - ./volumes/qdrant:/qdrant/storage
# environment:
# QDRANT__API_KEY: 'difyai123456'
# ports:
# - "6333:6333"
# uncomment to use qdrant as vector store.
# (if uncommented, you need to comment out the weaviate service above,
# and set VECTOR_STORE to qdrant in the api & worker service.)
# qdrant:
# image: qdrant/qdrant:latest
# restart: always
# volumes:
# - ./volumes/qdrant:/qdrant/storage
# environment:
# QDRANT__API_KEY: 'difyai123456'
# ports:
# - "6333:6333"

+ 25
- 25
docker/docker-compose.yaml 查看文件

@@ -121,9 +121,9 @@ services:
volumes:
# Mount the storage directory to the container, for storing user files.
- ./volumes/app/storage:/app/api/storage
# uncomment to expose dify-api port to host
# ports:
# - "5001:5001"
# uncomment to expose dify-api port to host
# ports:
# - "5001:5001"

# worker service
# The Celery worker for processing the queue.
@@ -210,9 +210,9 @@ services:
APP_API_URL: ''
# The DSN for Sentry error reporting. If not set, Sentry error reporting will be disabled.
SENTRY_DSN: ''
# uncomment to expose dify-web port to host
# ports:
# - "3000:3000"
# uncomment to expose dify-web port to host
# ports:
# - "3000:3000"

# The postgres database.
db:
@@ -247,9 +247,9 @@ services:
command: redis-server --requirepass difyai123456
healthcheck:
test: ["CMD", "redis-cli","ping"]
# uncomment to expose redis port to host
# ports:
# - "6379:6379"
# uncomment to expose redis port to host
# ports:
# - "6379:6379"

# The Weaviate vector store.
weaviate:
@@ -271,24 +271,24 @@ services:
AUTHENTICATION_APIKEY_USERS: 'hello@dify.ai'
AUTHORIZATION_ADMINLIST_ENABLED: 'true'
AUTHORIZATION_ADMINLIST_USERS: 'hello@dify.ai'
# uncomment to expose weaviate port to host
# ports:
# - "8080:8080"
# uncomment to expose weaviate port to host
# ports:
# - "8080:8080"

# Qdrant vector store.
# uncomment to use qdrant as vector store.
# (if uncommented, you need to comment out the weaviate service above,
# and set VECTOR_STORE to qdrant in the api & worker service.)
# qdrant:
# image: langgenius/qdrant:latest
# restart: always
# volumes:
# - ./volumes/qdrant:/qdrant/storage
# environment:
# QDRANT__API_KEY: 'difyai123456'
## uncomment to expose qdrant port to host
## ports:
## - "6333:6333"
# uncomment to use qdrant as vector store.
# (if uncommented, you need to comment out the weaviate service above,
# and set VECTOR_STORE to qdrant in the api & worker service.)
# qdrant:
# image: langgenius/qdrant:latest
# restart: always
# volumes:
# - ./volumes/qdrant:/qdrant/storage
# environment:
# QDRANT__API_KEY: 'difyai123456'
# # uncomment to expose qdrant port to host
# # ports:
# # - "6333:6333"

# The nginx reverse proxy.
# used for reverse proxying the API service and Web service.

正在加载...
取消
保存