Docker 下部署 NPS(内网穿透)

Docker 下部署 NPS(内网穿透)
NPS 服务端:
    docker run -d --restart=always --name nps --net=host -v /home/pi/docker/nps/conf:/conf ffdfgdfg/nps
NPC 客户端(有两种启动方式:无配置文件 和 有配置文件):
    ./npc -server=home.mabokai.ltd:27001 -vkey=<web界面中显示的密钥>
    npc.exe -config=conf/npc.conf
docker NPC 客户端:
    docker run -d --restart=always --name npc --net=host ffdfgdfg/npc -server=home.mabokai.ltd:27001 -vkey=<web界面中显示的密钥>
linux/386:
    docker run -d --restart=always --name npc --net=host ffdfgdfg/npc:0.26.4 -server=home.mabokai.ltd:27001 -vkey=<web界面中显示的密钥>