forked from dahkath/CxBank-JavaApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-java-http.yml
More file actions
45 lines (41 loc) · 1.16 KB
/
docker-compose-java-http.yml
File metadata and controls
45 lines (41 loc) · 1.16 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
version: "3"
networks:
java-http-net:
driver: bridge
services:
bank-gateway:
image: 'yevgenykcx/bank-gateway:latest'
networks:
- java-http-net
ports:
- '8110:8110'
environment:
- BANK_ANALYSIS_URL=http://bank-analysis:8111
- BANK_STORAGE_URL=http://bank-storage:8112
- IAST_MANAGER_URL=${IAST_MANAGER_URL}
# workaround for concurrent IAST agent download bug:
restart: on-failure
bank-analysis:
image: 'yevgenykcx/bank-analysis:latest'
networks:
- java-http-net
ports:
- '8111:8111'
environment:
- BANK_GATEWAY_URL=http://bank-gateway:8110
- BANK_STORAGE_URL=http://bank-storage:8112
- IAST_MANAGER_URL=${IAST_MANAGER_URL}
# workaround for concurrent IAST agent download bug:
restart: on-failure
bank-storage:
image: 'yevgenykcx/bank-storage:latest'
networks:
- java-http-net
ports:
- '8112:8112'
environment:
- BANK_GATEWAY_URL=http://bank-gateway:8110
- BANK_ANALYSIS_URL=http://bank-analysis:8111
- IAST_MANAGER_URL=${IAST_MANAGER_URL}
# workaround for concurrent IAST agent download bug:
restart: on-failure