forked from HyperledgerHandsOn/trade-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-rest.yaml
63 lines (56 loc) · 1.08 KB
/
docker-compose-rest.yaml
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
#
# SPDX-License-Identifier: Apache-2.0
#
version: '2'
services:
networks:
trade:
services:
exporter_rest:
container_name: exporter_rest
image: exporter-rest:latest
environment:
- CONFIG_PATH=/config
working_dir: /usr/src/app
volumes:
- ../:/config
ports:
- "4000:4000"
networks:
- trade
importer_rest:
container_name: importer_rest
image: importer-rest:latest
environment:
- CONFIG_PATH=/config
working_dir: /usr/src/app
volumes:
- ../:/config
ports:
- "5000:5000"
networks:
- trade
regulator_rest:
container_name: regulator_rest
image: regulator-rest:latest
environment:
- CONFIG_PATH=/config
working_dir: /usr/src/app
volumes:
- ../:/config
ports:
- "6000:6000"
networks:
- trade
carrier_rest:
container_name: carrier_rest
image: carrier-rest:latest
environment:
- CONFIG_PATH=/config
working_dir: /usr/src/app
volumes:
- ../:/config
ports:
- "7000:7000"
networks:
- trade