20 lines
471 B
Docker
20 lines
471 B
Docker
FROM alpine
|
|
|
|
ARG SVC_HOST
|
|
ARG SVC_PORT
|
|
|
|
WORKDIR /etc/tor
|
|
|
|
RUN apk add --no-cache curl tor && \
|
|
echo -e "HiddenServiceDir /var/lib/tor/svc/\nHiddenServicePort $SVC_PORT $SVC_HOST:$SVC_PORT" > ./torrc
|
|
|
|
HEALTHCHECK --interval=60s --timeout=15s --start-period=20s \
|
|
CMD curl -s --socks5 127.0.0.1:9050 'https://check.torproject.org/' | grep -qm1 Congratulations
|
|
|
|
COPY tor.sh /usr/local/bin/
|
|
COPY svc-hostname /usr/local/bin/
|
|
|
|
#USER tor
|
|
|
|
CMD [ "tor.sh", "$SVC_HOST" ]
|