Created
October 12, 2020 11:10
-
-
Save ttimasdf/5a3a0bbc64af8220147b3f539773933b to your computer and use it in GitHub Desktop.
花生壳内网穿透 (phddns 5.0) Docker 容器
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
RUN apt-get update && apt-get install -y wget | |
ARG url="https://dl-cdn.oray.com/hsk/linux/phddns-5.0.0-amd64.deb" | |
RUN wget "$url" -O phddns.deb && \ | |
dpkg -i phddns.deb && \ | |
rm phddns.deb | |
CMD ["/usr/bin/phtunnel", "-v", "-c", "/etc/phtunnel.json", "-r", "-i", "11429", "-k", "adf9fb5a1ad438b9", "-e", "client-ua:HSKEMD/5.0.0/Ubuntu/20050500;vendor:Oray"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment