-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.native.yml
More file actions
41 lines (36 loc) · 995 Bytes
/
docker-compose.native.yml
File metadata and controls
41 lines (36 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# =======================================================================
# i3T4AN (Ethan Blair)
# Project: Vector Knowledge Base
# File: Docker Compose for Native Backend Mode
# Description: Runs only Qdrant and Frontend in Docker, backend runs natively
# =======================================================================
version: '3.8'
services:
# Qdrant vector database
qdrant:
image: qdrant/qdrant:latest
container_name: vkb-qdrant
ports:
- "6333:6333"
volumes:
- ./qdrant_storage:/qdrant/storage
restart: unless-stopped
networks:
- vkb-network
# Frontend static file server
frontend:
image: nginx:alpine
container_name: vkb-frontend
ports:
- "8001:80"
volumes:
- ./frontend:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
restart: unless-stopped
networks:
- vkb-network
networks:
vkb-network:
driver: bridge
volumes:
qdrant_storage: