dockerfiles/privoxy/Dockerfile
Jess Frazelle c4ff0cf58c
cleanup maintainers
Signed-off-by: Jess Frazelle <me@jessfraz.com>
2016-09-19 15:25:05 -07:00

30 lines
603 B
Docker

# run a privoxy in a container and link to a tor socks proxy container
#
# docker run -d \
# --restart always \
# --link torproxy:torproxy \
# -v /etc/localtime:/etc/localtime:ro \
# -p 8118:8118 \
# --name privoxy \
# jess/privoxy
#
FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apk --no-cache add \
privoxy
# expose http port
EXPOSE 8118
# copy in our privoxy config file
COPY privoxy.conf /etc/privoxy/config
# make sure files are owned by privoxy user
RUN chown -R privoxy /etc/privoxy
USER privoxy
ENTRYPOINT [ "privoxy", "--no-daemon" ]
CMD [ "/etc/privoxy/config" ]