-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
64 lines (64 loc) · 1.16 KB
/
docker-compose.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
version: "3.7"
services:
mongo:
env_file: .env
image: mongo:latest
ports:
- 27017:27017
redis:
env_file: .env
image: redis:latest
ports:
- 6379:6379
re-manager:
env_file: .env
build: ./re-manager
ports:
- 60615:60615
- 60625:60625
volumes:
- ${HAPPI_DB_PATH}:/happi_db.json
depends_on:
- "redis"
- "zmq-proxy"
hwproxy:
env_file: .env
build: ./hwproxy
ports:
- 60620:60620
volumes:
- ${HAPPI_DB_PATH}:/happi_db.json
zmq-proxy:
env_file: .env
build: ./zmq-proxy
ports:
- 5567:5567
- 5568:5568
wt5:
env_file: .env
build: ./wt5
depends_on:
- "zmq-proxy"
volumes:
- ${WT5_DATA_PATH}:/data
slack:
env_file: .env
build: ./slack
depends_on:
- "zmq-proxy"
volumes:
- ${WT5_DATA_PATH}:/data
x-disabled:
bluesky-queueserver:
build: ./bluesky-queueserver
ports:
- 60610:60610
depends_on:
- "re-manager"
bluesky-webclient:
image: ghcr.io/bluesky/bluesky-webclient:main
stdin_open: true
ports:
- 3001:3001
depends_on:
- bluesky-queueserver