-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.override.yml
77 lines (68 loc) · 1.53 KB
/
docker-compose.override.yml
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
services:
notebookviewer:
container_name: meditor_notebookviewer
build: packages/notebook-viewer
environment:
- FLASK_ENV=development
env_file:
- .env
volumes:
- ./packages/notebook-viewer:/usr/src/app
proxy:
container_name: meditor_proxy
build: packages/proxy
restart: on-failure
notifier:
container_name: meditor_notifier
build: packages/notifier
restart: on-failure
env_file:
- .env
volumes:
- ./packages/notifier:/usr/src/app
- /usr/src/app/node_modules
app:
container_name: meditor_app
build: packages/app
restart: on-failure
env_file:
- .env
ports:
- "127.0.0.1:4000:4000"
volumes:
- ./packages/app:/usr/src/app
- /usr/src/app/node_modules
- /usr/src/app/.next
docs:
container_name: meditor_docs
build: packages/docs
env_file:
- .env
ports:
- "127.0.0.1:3030:3030"
legacy-api:
container_name: meditor_legacy-api
build: packages/legacy-api
restart: always
env_file:
- .env
volumes:
- ./packages/legacy-api:/usr/src/app
- /usr/src/app/node_modules
database:
container_name: meditor_database
volumes:
- ./mongo-data:/data/db
ports:
- "127.0.0.1:27018:27017"
nats:
container_name: meditor_nats
volumes:
- ./nats-data:/nats/data
ports:
- "127.0.0.1:4222:4222"
- "127.0.0.1:8222:8222"
monitor:
container_name: meditor_monitor
agent:
container_name: meditor_agent