Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Ansgar Burchardt
dune-docker
Commits
3f41669f
Unverified
Commit
3f41669f
authored
Aug 22, 2017
by
Ansgar Burchardt
Browse files
add missing flag `-q`
Otherwise the output is not empty even when the network doesn't exist.
parent
c1cd4743
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/duneci-proxy
View file @
3f41669f
...
...
@@ -30,7 +30,7 @@ if [ ! -e ${configfile} ]; then
exit
1
fi
if
[
-z
"
$(
docker network
ls
-f
name
=
${
network
}
)
"
]
;
then
if
[
-z
"
$(
docker network
ls
-q
-f
name
=
${
network
}
)
"
]
;
then
docker network create
--internal
--driver
=
bridge
${
network
}
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment