Skip to content

Commit

Permalink
linux fix -- missing host network mode
Browse files Browse the repository at this point in the history
  • Loading branch information
traceypooh committed Jun 12, 2024
1 parent eb34de6 commit 4fcf96c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ if [ $HOST_UNAME = Darwin ]; then
ARGS_RUN="$ARGS_SEC $ARGS_RUN -p 8000:80 -p 4000:443"
else
PV=/pv
ARGS_INIT="--net=host --cgroupns=host"
ARGS_NET="--net=host --cgroupns=host"
ARGS_INIT="$ARGS_NET"
ARGS_RUN="$ARGS_NET $ARGS_RUN"
fi


Expand Down

0 comments on commit 4fcf96c

Please sign in to comment.