-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
49 lines (44 loc) · 1.04 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
version: "3"
services:
demo-ecommerce:
image: bkimminich/juice-shop
container_name: demo-ecommerce
restart: unless-stopped
networks:
internal-nw:
firewall:
build:
context: .
dockerfile: ./online-component/proxy.Dockerfile
container_name: firewall
ports:
- 0.0.0.0:8080:8081
restart: unless-stopped
volumes:
- ./online-component/config/proxy.settings.toml:/settings.toml
networks:
internal-nw:
firewall-interface:
build:
context: .
dockerfile: ./online-component/interface.Dockerfile
container_name: firewall-interface
ports:
- 0.0.0.0:5000:5000
restart: unless-stopped
networks:
internal-nw:
offline-model:
build:
context: .
dockerfile: ./model-implementation/model.Dockerfile
container_name: ml-model
ports:
- 0.0.0.0:5001:5000
restart: unless-stopped
volumes:
- ./model-implementation/features/features.csv:/app/features.csv
networks:
internal-nw:
networks:
internal-nw: