Dockerfile
to create a Docker container image for Squid proxy server.
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.
- SQUID_USERNAME
- SQUID_PASSWORD
- CACHE_PEER
- 3128
/var/log/squid3
A simple Dockerfile for launching an authenticated squid proxy with option to forward the squid proxy to another proxy with or without authentication. This scenario comes valid when user is behind the corporate proxy
The user must specify authentication credentials via the following environment variables:
SQUID_USERNAME=foo
SQUID_PASSWORD=bar
CACHE_PEER=user:[email protected]:8080
Clone the Repo:
git clone https://github.com/dockerworxinc/Squid-Proxy-with-Auth.git
Build the image:
cd Squid-Proxy-with-Auth
docker build -t dockerworx/docker-squid .
Usage:
docker run -d --name="docker-squid" \
-e SQUID_USERNAME=foo -e SQUID_PASSWORD=bar \
[-e "CACHE_PEER=user:[email protected]:8080"] \
-p <HostPort>:3128 dockerworx/docker-squid
- Set CACHE_PEER to an url of your parent (upstream) proxy. Supports login authentication.
Examples:
docker run -d --name="docker-squid" -p 3128:3128 \
-e SQUID_USERNAME=foo -e SQUID_PASSWORD=bar \
-e "CACHE_PEER=user:p%42ssword@otherproxy:8080" \
dockerworx/docker-squid
Squid is a full featured caching proxy server and a large number of configuration parameters. To configure Squid as per your requirements mount your custom configuration at /etc/squid3/squid.conf
.
docker run --name squid -d \
--publish 3128:3128 \
--volume squid.conf:/etc/squid3/squid.conf \
dockerworx/docker-squid
- Output logs to stdout.
- The range of authentication options could be expanded through more configuration options.
- Supply a full configuration file that has been well considered for mutiple options handled either in config or init file