Bladeren bron

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 jaar geleden
bovenliggende
commit
0e04fcc071
No account linked to committer's email address
2 gewijzigde bestanden met toevoegingen van 37 en 37 verwijderingen
  1. 12
    12
      docker/docker-compose.middleware.yaml
  2. 25
    25
      docker/docker-compose.yaml

+ 12
- 12
docker/docker-compose.middleware.yaml Bestand weergeven

- "8080:8080" - "8080:8080"


# Qdrant vector store. # 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 Bestand weergeven

volumes: volumes:
# Mount the storage directory to the container, for storing user files. # Mount the storage directory to the container, for storing user files.
- ./volumes/app/storage:/app/api/storage - ./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 # worker service
# The Celery worker for processing the queue. # The Celery worker for processing the queue.
APP_API_URL: '' APP_API_URL: ''
# The DSN for Sentry error reporting. If not set, Sentry error reporting will be disabled. # The DSN for Sentry error reporting. If not set, Sentry error reporting will be disabled.
SENTRY_DSN: '' 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. # The postgres database.
db: db:
command: redis-server --requirepass difyai123456 command: redis-server --requirepass difyai123456
healthcheck: healthcheck:
test: ["CMD", "redis-cli","ping"] 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. # The Weaviate vector store.
weaviate: weaviate:
AUTHENTICATION_APIKEY_USERS: 'hello@dify.ai' AUTHENTICATION_APIKEY_USERS: 'hello@dify.ai'
AUTHORIZATION_ADMINLIST_ENABLED: 'true' AUTHORIZATION_ADMINLIST_ENABLED: 'true'
AUTHORIZATION_ADMINLIST_USERS: 'hello@dify.ai' 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. # 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. # The nginx reverse proxy.
# used for reverse proxying the API service and Web service. # used for reverse proxying the API service and Web service.

Laden…
Annuleren
Opslaan