-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
115 lines (106 loc) · 2.17 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Docker composor for the default virtual 6IDD testing ENV
version: '3.7'
services:
caRepeat:
container_name: caRepeater
restart: always
image: kedokudo/virtualbeamline:epics-base
networks:
- vn6idd
entrypoint:
- bin/linux-x86_64/caRepeater
ioc6iddsimmtr:
container_name: ioc6iddsimmtr
restart: always
image: kedokudo/virtualbeamline:ioc6iddsimmtr
stdin_open: true
tty: true
networks:
- vn6idd
environment:
- 'PREFIX=6iddSIM:'
expose:
- "5064"
- "5065"
depends_on:
- caRepeat
ioc6iddsimdet:
container_name: ioc6iddsimdet
restart: always
image: kedokudo/virtualbeamline:ioc6iddsimdet
stdin_open: true
tty: true
networks:
- vn6idd
environment:
- 'AD_PREFIX=6iddSIMDET1:'
expose:
- "5064"
- "5065"
depends_on:
- caRepeat
console:
container_name: console
image: kedokudo/virtualbeamline:epics-base
stdin_open: true
tty: true
entrypoint:
- /bin/bash
networks:
- vn6idd
depends_on:
- caRepeat
- ioc6iddsimdet
- ioc6iddsimmtr
vnc:
container_name: vnc
image: kedokudo/virtualbeamline:vnc
stdin_open: true
tty: true
environment:
- 'PREFIX=6iddSIM:'
- 'AD_PREFIX=6iddSIMDET1:'
- 'RESOLUTION=1920x1200'
networks:
- vn6idd
ports:
- "5901:5901"
depends_on:
- caRepeat
- ioc6iddsimdet
- ioc6iddsimmtr
volumes:
- .:/data
mongo:
container_name: mongoDB
restart: always
image: mongo
networks:
- vn6idd
ports:
- "27017:27017"
frontend:
container_name: jupyterlab
image: kedokudo/virtualbeamline:jupyter
stdin_open: true
tty: true
networks:
- vn6idd
ports:
- "8899:8888"
entrypoint:
- "jupyter"
- "lab"
- "--ip=0.0.0.0"
- "--no-browser"
- "--allow-root"
- "--NotebookApp.token=''"
depends_on:
- caRepeat
- ioc6iddsimdet
- ioc6iddsimmtr
volumes:
- ~/Documents/Workbench/jupyter-ht-hedm:/home/jupyter-ht-hedm
networks:
vn6idd:
driver: bridge