add tor relay/bridge

This commit is contained in:
Maciej Lebiest 2023-03-26 17:16:56 +02:00
parent 89a002f480
commit 741b40bb3a
3 changed files with 299 additions and 0 deletions

13
tor/Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM registry.fedoraproject.org/fedora:37
RUN dnf clean all && \
dnf install -y tor nyx util-linux && \
dnf clean all
COPY torrc.conf /torrc
WORKDIR /
USER toranon
ENTRYPOINT ["/usr/bin/tor", "-f", "/torrc"]