You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.qdrant.yaml 273B

12345678910111213
  1. version: '3'
  2. services:
  3. # Qdrant vector store.
  4. qdrant:
  5. image: langgenius/qdrant:v1.7.3
  6. restart: always
  7. volumes:
  8. - ./volumes/qdrant:/qdrant/storage
  9. environment:
  10. QDRANT_API_KEY: 'difyai123456'
  11. ports:
  12. - "6333:6333"
  13. - "6334:6334"