21 lines
446 B
Docker
21 lines
446 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/bin/
|
|
|
|
#VOLUME ["/var/lib/tor/svc"]
|
|
|
|
#USER tor
|
|
|
|
CMD ["tor.sh"]
|