-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
62 lines (60 loc) · 1.78 KB
/
docker-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
version: "3.4"
services:
# base_image
fawkes-robotino:
build:
context: .
dockerfile: Dockerfile
image: base_image
# mongo-container:
# image: mongo:4.0
# network_mode: host
# command: mongod --bind_ip_all
# healthcheck:
# test: ["CMD","mongo", "--eval", "db.adminCommand('ping')"]
# interval: 10s
# timeout: 10s
# retries: 5
# volumes:
# - "./mnt:/run:z"
#
# refbox:
# image: quay.io/robocup-logistics/rcll-refbox:latest
# working_dir: /run
# command: llsf-refbox --cfg-mps mps/mockup_mps.yaml --cfg-mongodb mongodb/enable_mongodb.yaml --cfg-simulation simulation/fast_simulation.yaml --cfg-game game/buildtest_game.yaml --dump-cfg
# network_mode: host
# depends_on:
# mongo-container:
# condition: service_healthy
# volumes:
# - "./mnt:/run:z"
# - "refboxcfg:/etc/rcll-refbox"
# refbox_instruct:
# image: quay.io/robocup-logistics/rcll-refbox:latest
# command:
# - /bin/sh
# - -c
# - |
# rcll-refbox-instruct -w 60
# rcll-refbox-instruct -p SETUP -s RUNNING -c Carologistics
# sleep 10
# rcll-refbox-instruct -p PRODUCTION
# network_mode: host
# volumes:
# - "./mnt:/run:z"
# - "refboxcfg:/etc/rcll-refbox"
# #rcll-refbox-instruct -n 3 -W 60
# central-agent:
# image: base_image
# network_mode: host
# depends_on:
# mongo-container:
# condition: service_healthy
# command: ./tests.d/cx-central-simtest.bash
# volumes:
# - "./mnt:/workdir/tests.out.d/:z"
#
#
# volumes:
# refboxcfg:
# driver: local