Skip to content

Commit

Permalink
Merge pull request #61 from scottyhardy/network_option_#60
Browse files Browse the repository at this point in the history
feat: add --network passthrough #60
  • Loading branch information
scottyhardy committed May 5, 2020
2 parents 2b940c7 + 777170b commit 9f60160
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker-wine
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ print_help () {
echo " --env=VALUE Specify additional environment variable(s) to be passed"
echo " to the container. Uses standard docker syntax and"
echo " multiple statements are allowed"
echo " --network=VALUE Specify the network to connect the container to. Uses"
echo " standard docker syntax"
echo " --volume=VALUE Specify additional volume(s) to be mounted. Uses"
echo " standard docker syntax and multiple statements are"
echo " allowed"
Expand Down Expand Up @@ -302,7 +304,7 @@ while [ $# -gt 0 ]; do
--secure-password=*)
add_run_arg --env="USER_PASSWD=${1#*=}"
;;
--device=*|--env=*|--volume=*)
--device=*|--env=*|--network=*|--volume=*)
add_run_arg "$1"
;;
--workdir=*)
Expand Down

0 comments on commit 9f60160

Please sign in to comment.