diff options
Diffstat (limited to '.ci/templates/tests/rhombus-labgrid/docker-compose.yml')
-rwxr-xr-x | .ci/templates/tests/rhombus-labgrid/docker-compose.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.ci/templates/tests/rhombus-labgrid/docker-compose.yml b/.ci/templates/tests/rhombus-labgrid/docker-compose.yml new file mode 100755 index 000000000..22a1eb219 --- /dev/null +++ b/.ci/templates/tests/rhombus-labgrid/docker-compose.yml @@ -0,0 +1,26 @@ +version: '3.3' +services: + coordinator: + image: "labgrid-coordinator" + volumes: + - "./crossbar:/home/root/crossbar:Z" + tty: true + network_mode: "host" + restart: unless-stopped + command: bash -c "cp /home/root/crossbar/places.yaml /opt/crossbar/places.yaml && + crossbar start --config /opt/labgrid/.crossbar/config.yaml" + exporter: + image: "labgrid-exporter" + volumes: + - "./exporter-conf:/opt/conf:Z" + - "/run/udev:/run/udev:ro" + - "/dev:/dev" + depends_on: + - coordinator + tty: true + network_mode: "host" + restart: unless-stopped + stdin_open: true + privileged: true + command: bash -c "set -e && + /opt/wait-for-it/wait-for-it.sh 127.0.0.1:20408 -- labgrid-exporter /opt/conf/exporter.yaml" |