squid-deb-proxy/README.md

27 lines
967 B
Markdown
Raw Permalink Normal View History

2020-08-11 16:35:27 +00:00
This is a direct copy of https://github.com/mikepurvis/squid-deb-proxy
It's been copied to push to docker hub with tags rather than just using "latest" so clients can control the version which is pulled.
2014-08-18 16:22:46 +00:00
squid-deb-proxy Docker container
================================
2014-12-12 10:05:28 +00:00
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/pmoust/squid-deb-proxy?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2014-08-18 16:22:46 +00:00
squid-deb-proxy provides an easy wrapper over squid3 to enable package proxy caching for your organisation/LAN.
This Docker container image allows most (if not all) non-routeable LAN subnets and caches from sources found under `extra-sources.acl`
Usage:
* On Server / Host:
`docker run --name proxy --rm -v /path/to/cachedir:/cachedir -p PORT:8000 pmoust/squid-deb-proxy &`
* On a node
```
apt-get install squid-deb-proxy-client
echo 'Acquire::http::Proxy "http://HOST_IP:PORT";' > /etc/apt/apt.conf.d/30autoproxy
```