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
- Host: GitHub
- URL: https://github.com/konstruktoid/container-squid-build
- Owner: konstruktoid
- Created: 2016-09-16T20:23:00.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-07-02T21:38:15.000Z (4 months ago)
- Last Synced: 2025-07-02T22:31:39.949Z (4 months ago)
- Language: Dockerfile
- Size: 238 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```