Skip to content

Instantly share code, notes, and snippets.

@casebeer
Created October 28, 2024 22:07
Show Gist options
  • Save casebeer/5d4526184e1d500ee547afe9744eefd5 to your computer and use it in GitHub Desktop.
Save casebeer/5d4526184e1d500ee547afe9744eefd5 to your computer and use it in GitHub Desktop.
Run a host binary in a docker guest using nsenter
#!/bin/bash
# via https://stackoverflow.com/a/53409127
dockerName="${1}"
hostCommandLine="${@:2}"
#nsenter -n -t "$(docker inspect --format {{.State.Pid}} "${dockerName}")" "${@:2}"
nsenter -n -t "$(docker inspect --format {{.State.Pid}} "${dockerName}")" ${hostCommandLine[@]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment