forked from CLSFramework/playmaker-server-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (36 loc) · 774 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (36 loc) · 774 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
40
41
42
43
version: '3.8'
services:
rcssserver:
image: sadraiiali/rcssserver:latest
container_name: rcssserver
networks:
custom_network:
ipv4_address: 10.0.10.10
right_team:
build:
context: .
dockerfile: Dockerfile
environment:
- TEAM_NAME=right_team
- HOST=10.0.10.10
container_name: right_team_all
networks:
custom_network:
ipv4_address: 10.0.10.2
left_team:
build:
context: .
dockerfile: Dockerfile
environment:
- TEAM_NAME=left_team
- HOST=10.0.10.10
container_name: left_team_all
networks:
custom_network:
ipv4_address: 10.0.10.3
networks:
custom_network:
driver: bridge
ipam:
config:
- subnet: 10.0.10.0/24