diff options
author | axtloss <axtlos@getcryst.al> | 2023-05-31 20:54:55 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2023-05-31 20:54:55 +0200 |
commit | 3999be65f43c30d22c93e28c8f1554c923973d23 (patch) | |
tree | 884c99b032e2fcd66960cc6c10395ae08e5ee7cf /src/main/java/io/github/jshipit/Commands.java | |
parent | 3bfe8ba05a429e726001b88c63f736f1bbed3509 (diff) | |
download | jshipit-3999be65f43c30d22c93e28c8f1554c923973d23.tar.gz jshipit-3999be65f43c30d22c93e28c8f1554c923973d23.tar.bz2 |
Add permissions configuration file
Diffstat (limited to 'src/main/java/io/github/jshipit/Commands.java')
-rw-r--r-- | src/main/java/io/github/jshipit/Commands.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/io/github/jshipit/Commands.java b/src/main/java/io/github/jshipit/Commands.java index 1b4b913..e4ed5ec 100644 --- a/src/main/java/io/github/jshipit/Commands.java +++ b/src/main/java/io/github/jshipit/Commands.java @@ -41,6 +41,9 @@ class CommandCreate { @Parameter(names = {"--image", "-i"}, description = "Image of the container") public String containerImage; + @Parameter(names = {"--isolated", "-a"}, description = "If the container should be isolated from the host", required = false) + public boolean containerIsolated = true; + @Parameter(names = "--help", help = true) private boolean help; } |