An open API service indexing awesome lists of open source software.

https://github.com/konstruktoid/container-squid-build

Squid Docker image
https://github.com/konstruktoid/container-squid-build

Last synced: 4 months ago
JSON representation

Squid Docker image

Awesome Lists containing this project

README

          

# Squid

```sh
"Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more.
It reduces bandwidth and improves response times by caching and reusing
frequently-requested web pages. Squid has extensive access controls and makes a
great server accelerator. It runs on most available operating systems, including
Windows and is licensed under the GNU GPL."
```

[http://www.squid-cache.org](http://www.squid-cache.org/)

```sh
docker build --no-cache --tag konstruktoid/squid -f Dockerfile .
docker run --cap-drop=all --cap-add={setgid,setuid} --dns 1.1.1.2 -d -p 3128:3128 konstruktoid/squid
curl --proxy 127.0.0.1:3128 --head https://duckduckgo.com
```