-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (39 loc) · 802 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (39 loc) · 802 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
35
36
37
38
39
---
version: "3"
services:
roundservice:
image: "roundservice"
build: "RoundService"
networks:
- "mn_bridge_network"
accountdb:
image: "accountdb"
build: "Account\\AccountDB"
networks:
- "mn_bridge_network"
ports:
- "5432:5432"
voteservice:
image: "voteservice"
build: "VoteService"
networks:
- "mn_bridge_network"
playerservice:
image: "playerservice"
build: "PlayerService"
networks:
- "mn_bridge_network"
accountservice:
image: "accountservice"
build: "Account\\AccountService"
networks:
- "mn_bridge_network"
gatewayservice:
image: "gatewayservice"
build: "GatewayService"
networks:
- "mn_bridge_network"
networks:
mn_bridge_network:
external:
name: "mn_bridge_network"