Sign inSign up

caligari/privoxy

By caligari

Updated 5 days ago

Privoxy is a "privacy enhancing proxy", filtering Web pages and removing advertisements.

Image
2

100K+

caligari/privoxy repository overview

docker-privoxy

Privoxy is a "privacy enhancing proxy", filtering Web pages and removing advertisements. This docker container runs privoxy over Alpine Linux in 6 Mb uncompressed image.

The image, that is built every week, can be pulled from caligari/privoxy

Source repository: https://gitlab.com/caligari/docker-privoxy

Run privoxy

(please, read the security note below)

docker run -d --name=privoxy -p 8118:8118 caligari/privoxy:latest

Test privoxy

curl http://ifconfig.es
curl --proxy http://localhost:8118/ http://ifconfig.es
  

Security note

This container should be executed in a local host or in a VPN.

Please, don't execute this docker in a host accesible from the internet with -p parameter because it bypass the Linux firewall and you could be opening an anonymous internet door. Bind the port to the interface of your VPN:

VPN_IFACE_IP=10.131.1.1 docker run -d -p ${VPN_IFACE_IP}:8118:8118 caligari/privoxy:latest

Compose

Docker compose example:

version: "3"

services:
  app:
    image: "caligari/privoxy:latest"
    container_name: "privoxy"
    restart: "unless-stopped"
    ports:
      - "10.131.1.1:8118:8118" # bind to your VPN interface IP

Tag summary

Content type

Image

Digest

sha256:fc1b542b6

Size

4.1 MB

Last updated

5 days ago

docker pull caligari/privoxy