mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
e775b4027c
Signed-off-by: Jess Frazelle <acidburn@google.com>
29 lines
509 B
Docker
29 lines
509 B
Docker
# run a tor socks proxy in a container
|
|
#
|
|
# docker run -d \
|
|
# --restart always \
|
|
# -v /etc/localtime:/etc/localtime:ro \
|
|
# -p 9050:9050 \
|
|
# --name torproxy \
|
|
# jess/tor-proxy
|
|
#
|
|
FROM alpine:edge
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk --no-cache add \
|
|
tor
|
|
|
|
# expose socks port
|
|
EXPOSE 9050
|
|
|
|
# copy in our torrc file
|
|
COPY torrc.default /etc/tor/torrc.default
|
|
|
|
# make sure files are owned by tor user
|
|
RUN chown -R tor /etc/tor
|
|
|
|
USER tor
|
|
|
|
ENTRYPOINT [ "tor" ]
|
|
CMD [ "-f", "/etc/tor/torrc.default" ]
|