mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-17 09:25:32 +00:00
14 lines
534 B
Plaintext
14 lines
534 B
Plaintext
# ch-run
|
|
# Utility to run a command in a Charliecloud container.
|
|
# More information: <https://github.com/hpc/charliecloud>.
|
|
|
|
# Run the given `echo` command inside a Charliecloud container, using the
|
|
# unpacked image at '/data/foo'.
|
|
ch-run /data/foo -- echo hello
|
|
|
|
# Make the Charliecloud container writable `-w` and mount the host's
|
|
# '/home/user' directory to '/mnt' inside the container using the unpacked
|
|
# image at '/data/foo'. Run `/mnt/your_exec` inside the container.
|
|
ch-run -w -b /home/user:/mnt /data/foo -- /mnt/your_exec
|
|
|