diff options
author | Linus Nordberg <linus@nordberg.se> | 2015-05-26 15:18:54 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2015-05-26 15:18:54 +0200 |
commit | a8126b37d4ef973092c1adf4d8238509de21542b (patch) | |
tree | 3c3ba32ac71e3df7c3744e3ac84a21be3ec344b2 /onion/Dockerfile |
Initial commit.
Diffstat (limited to 'onion/Dockerfile')
-rw-r--r-- | onion/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/onion/Dockerfile b/onion/Dockerfile new file mode 100644 index 0000000..c1cadcd --- /dev/null +++ b/onion/Dockerfile @@ -0,0 +1,11 @@ +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 +RUN chown -R debian-tor:debian-tor /var/lib/tor/hs +ENTRYPOINT ["/start.sh"] |