forked from AirHockeyChallenge/air_hockey_challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-tournament.yml
More file actions
33 lines (29 loc) · 896 Bytes
/
docker-compose-tournament.yml
File metadata and controls
33 lines (29 loc) · 896 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
version: "3.4"
services:
env:
image: airhockeychallenge/challenge:latest
build:
context: .
environment:
- DISPLAY=${DISPLAY}
- XAUTHORITY=/tmp/.docker.xauth
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
- /tmp/.docker.xauth:/tmp/.docker.xauth
command: "python air_hockey_challenge/framework/evaluate_tournament.py"
network_mode: host
working_dir: /src/2025-challenge
agent_1:
image: airhockeychallenge/agent_1
build:
context: .
command: "python run.py -e tournament_server --example baseline --host localhost --port 8001"
network_mode: host
working_dir: /src/2025-challenge
agent_2:
image: airhockeychallenge/agent_2
build:
context: .
command: "python run.py -e tournament_server --example baseline --host localhost --port 8002"
network_mode: host
working_dir: /src/2025-challenge