executable_docker 254 B

1234567891011
  1. #!/usr/bin/env bash
  2. exec /run/current-system/profile/bin/docker run \
  3. --rm \
  4. --network host \
  5. --volume "${PWD}:/workdir" \
  6. --workdir /workdir \
  7. --volume /var/run/docker.sock:/var/run/docker.sock \
  8. docker:latest \
  9. "$@"