You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-monero-node/dockerfiles/tor

18 lines
278 B
Plaintext

FROM ubuntu:20.04
RUN apt-get update && apt-get install tor curl -y
RUN mkdir -p /run/tor \
&& chown -R debian-tor:debian-tor /run/tor \
&& chmod 700 -R /run/tor
COPY conf/torrc /etc/tor/torrc
COPY conf/post.sh /post.sh
USER debian-tor
EXPOSE 9050
ENTRYPOINT ["tor"]