Spaces:
Sleeping
Sleeping
File size: 384 Bytes
bb04c5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | services:
semantic-search:
build:
context: .
dockerfile: Dockerfile
container_name: semantic-search
ports:
- "7860:7860"
environment:
NLTK_DATA: /usr/local/share/nltk_data
volumes:
- ./config.yaml:/app/config.yaml:ro
- ./data:/app/data
- ./results:/app/results
- ./documents:/documents
restart: unless-stopped
|