fix: update docker compose for macos, update gitignore (#22)

This commit is contained in:
George 2024-01-06 14:50:29 +01:00 committed by GitHub
parent 8323c9bbf6
commit 0c14790d89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ static
__pycache__
.vscode
.python-version
.idea/

View File

@ -5,15 +5,17 @@ services:
build: .
container_name: qdrant_demo_web
ports:
- 8000:8000
- "8000:8000"
depends_on:
- qdrant
environment:
- QDRANT_URL=http://qdrant_demo_qdrant:6333
qdrant:
container_name: qdrant_demo_qdrant
image: qdrant/qdrant:v1.7.3
ports:
- 6333:6333
- 6334:6334
- "6333:6333"
- "6334:6334"
volumes:
- ./data/qdrant_storage:/qdrant/storage