dmm-compose.yaml (487B)
1 name: dmm 2 3 services: 4 dmm: 5 image: docker 6 entrypoint: docker 7 restart: unless-stopped 8 privileged: true 9 command: | 10 run 11 -i 12 --rm 13 --privileged 14 --cgroupns=host 15 --pid=host 16 --userns=host 17 -v /sys:/host/sys 18 -v /var/run/docker.sock:/var/run/docker.sock 19 -v /dev:/dev 20 ghcr.io/allfro/allfro/device-mapping-manager:latest 21 volumes: 22 - /var/run/docker.sock:/var/run/docker.sock 23 deploy: 24 mode: global