mirror of
https://github.com/vimagick/dockerfiles.git
synced 2026-01-03 11:34:57 +01:00
add privoxy-arm
This commit is contained in:
24
privoxy/arm/Dockerfile
Normal file
24
privoxy/arm/Dockerfile
Normal file
@@ -0,0 +1,24 @@
|
||||
#
|
||||
# Dockerfile for privoxy-arm
|
||||
#
|
||||
|
||||
FROM easypi/alpine-arm
|
||||
MAINTAINER kev <noreply@easypi.info>
|
||||
|
||||
RUN set -xe \
|
||||
&& apk add -U curl privoxy \
|
||||
&& curl -sSL https://github.com/tianon/gosu/releases/download/1.9/gosu-armhf > /usr/sbin/gosu \
|
||||
&& chmod +x /usr/sbin/gosu \
|
||||
&& apk del curl \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
RUN sed -i -e '/^listen-address/s/127.0.0.1/0.0.0.0/' \
|
||||
-e '/^accept-intercepted-requests/s/0/1/' \
|
||||
-e '/^enforce-blocks/s/0/1/' \
|
||||
-e '/^#debug/s/#//' /etc/privoxy/config
|
||||
|
||||
VOLUME /etc/privoxy
|
||||
|
||||
EXPOSE 8118
|
||||
|
||||
CMD gosu privoxy privoxy --no-daemon /etc/privoxy/config
|
||||
8
privoxy/arm/docker-compose.yml
Normal file
8
privoxy/arm/docker-compose.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
privoxy:
|
||||
image: easypi/privoxy-arm
|
||||
ports:
|
||||
- "8118:8118"
|
||||
volumes:
|
||||
- ./privoxy/user.action:/etc/privoxy/user.action
|
||||
- ./privoxy/user.filter:/etc/privoxy/user.filter
|
||||
restart: always
|
||||
Reference in New Issue
Block a user