ensure platform mount point exists

This commit is contained in:
Patrick Schratz 2024-08-28 00:34:53 +02:00
commit c80d20db4a
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -137,7 +137,9 @@ services:
environment:
DOCKER_TLS_CERTDIR: ""
image: docker:26-dind
commands: dockerd --tls=false --host=tcp://0.0.0.0:2375
commands:
- mkdir -p /tmp/${PLATFORM}
- dockerd --tls=false --host=tcp://0.0.0.0:2375
privileged: true
ports:
- 2375