blob: 94aaae16e2a1f941664492279d7d8f8606c74186 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM debian:jessie
RUN apt-get update
RUN echo 'debconf debconf/frontend select noninteractive' | debconf-set-selections
RUN apt-get -y -q install tor
RUN systemctl disable tor
ADD start.sh /start.sh
RUN chmod a+rx /start.sh
VOLUME /etc/tor
VOLUME /var/lib/tor/hs
ENTRYPOINT ["/start.sh"]
|