-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
88 lines (82 loc) · 1.58 KB
/
compose.yml
File metadata and controls
88 lines (82 loc) · 1.58 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
services:
reverse-proxy:
image: traefik:v3.6.6
command:
- "--api.insecure=true"
- "--providers.docker=true"
ports:
- "80:80"
- "8080:8080" # Traefik dashboard
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- emush_rag
app:
build:
context: .
dockerfile: Dockerfile.app
labels:
- "traefik.http.routers.app.rule=Host(`askneron.localhost`)"
ports:
- mode: ingress
target: 8080
protocol: tcp
restart: always
develop:
watch:
- action: rebuild
path: ./emush_rag
target: /app
ignore:
- .venv/
env_file:
- .env
depends_on:
- vector_store
- jaeger
networks:
- emush_rag
extra_hosts:
- host.docker.internal:host-gateway
vector_store:
image: chromadb/chroma:1.3.5
ports:
- mode: ingress
target: 8000
protocol: tcp
volumes:
- ./chroma:/data
restart: always
networks:
- emush_rag
jaeger:
image: jaegertracing/all-in-one:1.71.0
ports:
- 4317:4317
- 4318:4318
- 9411:9411
environment:
- COLLECTOR_ZIPKIN_HOST_PORT=:9411
networks:
- emush_rag
restart: always
grafana:
build:
context: .
dockerfile: Dockerfile.grafana
ports:
- 3000:3000
volumes:
- grafana-data:/var/lib/grafana
env_file:
- .env
depends_on:
- jaeger
networks:
- emush_rag
restart: always
networks:
emush_rag:
driver: bridge
volumes:
grafana-data: