Skip to content

Commit

Permalink
Ensure we accept a boolean argument
Browse files Browse the repository at this point in the history
  • Loading branch information
tarnfeld committed Nov 1, 2014
1 parent ac20d09 commit 1ab16d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portainer/app/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def args(parser):
help="Multiple tags to apply to the image once built")
group.add_argument("--container-image", default="jpetazzo/dind",
help="Docker image to run the portainer executor in")
group.add_argument("--insecure", default=False,
group.add_argument("--insecure", default=False, action="store_true",
help="Enable pulling/pushing of images with insecure registries")

# Arguments for the staging filesystem
Expand Down

0 comments on commit 1ab16d3

Please sign in to comment.