Skip to content

Instantly share code, notes, and snippets.

@ityonemo
Created May 22, 2020 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ityonemo/4036b50fff8dcf373872440d3eee122b to your computer and use it in GitHub Desktop.
Save ityonemo/4036b50fff8dcf373872440d3eee122b to your computer and use it in GitHub Desktop.
make-podman-like-singularity
#!/bin/sh
IMAGE=<your image id>
CMD=<your cmd>
podman run --net host -v $HOME:$HOME -e HOME="$HOME" -w$(PWD) -it $IMAGE "$CMD $@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment