diff options
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; } |