vdkch/docker-compose.yml

34 lines
570 B
YAML
Raw Normal View History

2025-02-15 13:52:05 +03:00
version: "3.8"
2025-02-10 15:53:52 +03:00
services:
qdrant:
image: qdrant/qdrant
container_name: qdrant
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_data:/qdrant/storage
restart: unless-stopped
2025-02-12 12:19:45 +03:00
2025-02-15 13:52:05 +03:00
backend:
build:
context: .
dockerfile: Dockerfile
2025-02-12 12:19:45 +03:00
container_name: backend
ports:
- "8000:8000"
2025-02-15 13:52:05 +03:00
restart: unless-stopped
2025-02-12 12:19:45 +03:00
2025-02-15 13:52:05 +03:00
futa-clone:
2025-02-12 12:19:45 +03:00
build:
2025-02-15 13:52:05 +03:00
context: ./futa-clone
dockerfile: Dockerfile
container_name: futa-clone
2025-02-12 12:19:45 +03:00
ports:
- "3000:3000"
2025-02-15 13:52:05 +03:00
restart: unless-stopped
2025-02-10 15:53:52 +03:00
volumes:
2025-02-15 13:52:05 +03:00
qdrant_data: