-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,22 @@ | ||
# docker-privoxy | ||
|
||
Docker file to build an image with privoxy service. | ||
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 can be pulled from https://hub.docker.com/r/caligari/privoxy/ | ||
|
||
## Run privoxy | ||
|
||
(please, __read the security note below__) | ||
|
||
docker run -d --name=privoxy -p 8118:8118 caligari/privoxy:latest | ||
|
||
## Test privoxy | ||
|
||
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__. | ||
|