squid прокси в контейнере
Go to file
Dmitry Belyaev 127d9c258c
add ssl-bump Dockerfile
2019-06-04 12:29:11 +03:00
ssl-bump add ssl-bump Dockerfile 2019-06-04 12:29:11 +03:00
Dockerfile bump to 4.7 2019-06-04 11:54:44 +03:00
LICENSE Initial commit 2017-02-08 09:37:36 +03:00
README.md Dependabot badge 2019-06-04 11:52:49 +03:00
docker-compose.yml update README and docker-compose example 2017-02-13 14:22:19 +03:00
squid-log.conf logging to stdout 2017-05-11 09:59:38 +03:00

README.md

Dependabot Status

docker-squid

Docker Squid container based on Alpine Linux.

Automated builds of the image are available on Dockerhub.

Quick Start

Just launch container:

docker run -p 3128:3128 b4tman/squid

or use docker-compose:

wget https://raw.githubusercontent.com/b4tman/docker-squid/master/docker-compose.yml
docker-compose up

Configuration

Environment variables:

  • SQUID_CONFIG_FILE: Specify the configuration file for squid. Defaults to /etc/squid/squid.conf.

Example:

docker run -p 3128:3128 \
	--env='SQUID_CONFIG_FILE=/etc/squid/my-squid.conf' \
	--volume=/srv/docker/squid/squid.conf:/etc/squid/my-squid.conf:ro \
	b4tman/squid

This will start a squid container with your config file /srv/docker/squid/squid.conf.