Merge pull request #26 from tiborvass/fix-network-flag-bug

build: do not error out if --network is default
pull/27/head
Tibor Vass 6 years ago committed by GitHub
commit 037af0e3dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -71,7 +71,7 @@ func runBuild(dockerCli command.Cli, in buildOptions) error {
if in.quiet {
return errors.Errorf("quiet currently not implemented")
}
if in.networkMode != "" {
if in.networkMode != "default" {
return errors.Errorf("network currently not implemented")
}
if in.imageIDFile != "" {

Loading…
Cancel
Save