-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbase-compose.yml
65 lines (56 loc) · 1.48 KB
/
base-compose.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: "3"
services:
game-engine:
image: gocoderone/bomberland-engine:2477
volumes:
- type: "bind"
source: ./agents/replay.json
target: /app/replay.json
go-agent:
build:
context: agents/go
dockerfile: Dockerfile
python3-agent:
build:
context: agents/python3
dockerfile: Dockerfile
python3-agent-dev:
build:
context: agents/python3
dockerfile: Dockerfile.dev
volumes:
- ./agents/python3:/app
python3-fwd:
build:
context: agents/python3
dockerfile: Dockerfile.fwd
python3-fwd-dev:
build:
context: agents/python3
dockerfile: Dockerfile.fwd.dev
volumes:
- ./agents/python3:/app
python3-gym-dev:
build:
context: agents/python3
dockerfile: Dockerfile.gym.dev
volumes:
- ./agents/python3:/app
typescript-agent:
build:
context: agents/typescript
dockerfile: Dockerfile
typescript-agent-dev:
build:
context: agents/typescript
dockerfile: Dockerfile.dev
volumes:
- ./agents/typescript:/app
cpp-agent:
build:
context: agents/cpp
dockerfile: Dockerfile
rust-agent:
build:
context: agents/rust
dockerfile: Dockerfile