当使用 network host 时,无需端口映射

This commit is contained in:
seedgou 2022-04-20 16:29:57 +08:00 committed by GitHub
parent d0ae6fd2a1
commit 89dce5c20b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,5 +14,5 @@ docker build --network host -t $imageName .
echo "启动服务"
for i in $(lsof -i:9993 -t);do kill -2 $i;done
docker run -d --network host --name $imageName -p 3443:3443 -p 9993:9993 -p 9993:9993/udp --restart unless-stopped $imageName
docker run -d --network host --name $imageName --restart unless-stopped $imageName
docker cp zerotier-planet:/app/bin/planet /opt/planet