-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (49 loc) · 1.19 KB
/
docker-compose.yml
File metadata and controls
55 lines (49 loc) · 1.19 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
version: "3.9"
volumes:
hqc_config:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: 'C:\Users\phili\Desktop\Uni\Master_Thesis\Docker\config\hqc'
clam_config:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: 'C:\Users\phili\Desktop\Uni\Master_Thesis\Docker\config\clam'
ara_config:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: 'C:\Users\phili\Desktop\Uni\Master_Thesis\Docker\config\ara'
services:
clam:
container_name: clam
build: clam_docker/.
ports:
- "8091:8888"
volumes:
- C:\Users\phili\Desktop\Uni\Master_Thesis\Docker\data:/usr/local/data
- clam_config:/usr/local/config
ara:
container_name: ara-net
build: ara-net_docker/.
ports:
- "8092:8888"
volumes:
- C:\Users\phili\Desktop\Uni\Master_Thesis\Docker\data:/usr/local/data
- ara_config:/usr/local/config
hqc:
container_name: hqc
build: hqc_docker/.
ports:
- "8090:8888"
volumes_from:
- data
data:
container_name: data
image: busybox
volumes:
- C:\Users\phili\Desktop\Uni\Master_Thesis\Docker\data:/usr/local/data