https://github.com/linkdata/docker-parentalproxy
https://github.com/linkdata/docker-parentalproxy
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/linkdata/docker-parentalproxy
- Owner: linkdata
- Created: 2017-02-07T16:24:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-25T17:47:49.000Z (over 6 years ago)
- Last Synced: 2025-10-24T10:40:15.140Z (9 months ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-parentalproxy
Builds on top of [sameersbn/docker-squid](https://github.com/sameersbn/docker-squid), adds [squidguard](http://www.squidguard.org/) with [Shallalist](http://www.shallalist.de/categories.html) blacklists and a local [dnsmasq](http://www.thekelleys.org.uk/dnsmasq/doc.html) server to enforce Google SafeSearch as well as Youtube and Bing safe searching.
Does not include WPAD autoconfiguration services.
Requires `--cap-add=NET_ADMIN` for `dnsmasq` to work.
Exposes only the squid proxy port. Can be combined with an [OpenVPN container](dperson/openvpn-client) if required. The sample below shows it using that with another container named `vpn`:
```
docker run -it \
--name=parentalproxy \
--restart=always \
--net=container:vpn \
--cap-add=NET_ADMIN \
-d \
linkdata/docker-parentalproxy
```