-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (34 loc) · 838 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (34 loc) · 838 Bytes
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
services:
edi-315-parser-api:
build:
context: ./edi-315-parser-api
dockerfile: Dockerfile
ports:
- "8080:8080"
container_name: edi-315-parser-container
identity:
build:
context: ./Identity
dockerfile: Dockerfile
ports:
- "8081:8080"
container_name: identity-container
payment-api:
build:
context: ./Payment.API
dockerfile: Dockerfile
ports:
- "8082:8080"
container_name: payment-api-container
payment-confirmation-consumer-app:
build:
context: ./PaymentConfirmationConsumerApp
dockerfile: Dockerfile
container_name: payment-confirmation-consumer-app-container
gateway-webapi:
build:
context: ./Gateway.API
dockerfile: Dockerfile
container_name: api-gateway-container
ports:
- "5000:8080"