1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Usage: subuser pkg [init|add|test] IMAGE-SOURCE-NAMES <args>
Packaging subucommands. These commands are to be issued from the root of a subuser repository.
init - Initialize a subuser repository.
add - Add an image source to the repository.
Usage: $ subuser pkg add image-source-name
To test images use subuser dev --update <image-name>
Options:
-h, --help show this help message and exit
--accept When testing images, accept permissions without
asking.
--prompt Prompt before installing new images.
--image-sources-dir=IMAGESOURCESDIR
When initializing a new repository, set where the
image source directories will be stored. This may be
set when you are working with an existing git
repository which you would like to unobtrusively add
subuser image sources too.
--permissions-file=PERMISSIONSFILE
When adding a new image source, the path to the new
permissions.json file for the image source. Note: This
flag should not be used to import permissions files
from outside of the repository. Use the POSIX cp
command for that.
--image-file=IMAGEFILE
When adding a new image source, the path to the new
image file which will be used to build the image
source. Note: This flag should not be used to import
build files from outside of the repository. Use the
POSIX cp command for that.
--build-context=BUILDCONTEXT
When adding a new image source, the path to the build
context for building the image.
|