-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
65 lines (59 loc) · 1.26 KB
/
Copy pathdocker-compose.yml
File metadata and controls
65 lines (59 loc) · 1.26 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
services:
backend:
image: ghcr.io/nithin0620/bloggr-backend:latest
build:
context: .
dockerfile: backend/Dockerfile
container_name: bloggr-backend
restart: unless-stopped
ports:
- "4000:4000"
env_file:
- .env
environment:
- ENVIRONMENT=production
depends_on:
- redis
- qdrant
networks:
- bloggr-net
frontend:
image: ghcr.io/nithin0620/bloggr-frontend:latest
build:
context: .
dockerfile: frontend/Dockerfile
args:
- REACT_APP_MODE=production
- REACT_APP_BASE_URL=${REACT_APP_BASE_URL:-http://bloggr.aws.ssh.net.in/api/v1}
container_name: bloggr-frontend
restart: unless-stopped
ports:
- "3000:80"
depends_on:
- backend
networks:
- bloggr-net
redis:
image: redis:7-alpine
container_name: bloggr-redis
restart: unless-stopped
ports:
- "6379:6379"
networks:
- bloggr-net
qdrant:
image: qdrant/qdrant:latest
container_name: bloggr-qdrant
restart: unless-stopped
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_storage:/qdrant/storage
networks:
- bloggr-net
networks:
bloggr-net:
driver: bridge
volumes:
qdrant_storage: