mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
11 lines
452 B
Plaintext
11 lines
452 B
Plaintext
# ch-grow
|
|
# Utility to build and manage Charliecloud images but not running them.
|
|
# It is completely unprivileged, with no setuid/setgid/setcap helpers.
|
|
# More information: <https://github.com/hpc/charliecloud>.
|
|
|
|
# Build image 'bar' using './foo/bar/Dockerfile' and context dir './foo/bar'.
|
|
ch-grow build -t bar -f ./foo/bar/Dockerfile ./foo/bar
|
|
|
|
# Download the Debian Buster image and place it in '/tmp/buster'.
|
|
ch-grow pull debian:buster /tmp/buster
|