squid прокси в контейнере
Go to file
Dmitry Belyaev 8aab792bc1 bump squid to 6.9 2024-04-24 12:55:07 +03:00
.github Bump actions/cache from 4.0.1 to 4.0.2 2024-04-01 08:54:55 +03:00
ssl-bump ssl-bump fix build 2024-02-19 14:40:17 +03:00
.drone.yml dockerhub login for build in drone cloud 2021-05-17 17:05:24 +03:00
Dockerfile bump squid to 6.9 2024-04-24 12:55:07 +03:00
LICENSE Initial commit 2017-02-08 09:37:36 +03:00
README.md Update README.md 2023-02-17 23:19:44 +03:00
docker-compose.test.yml sslbump: rootless (#125) 2024-01-24 15:43:29 +03:00
docker-compose.yml update README and docker-compose example 2017-02-13 14:22:19 +03:00
run.sh CMD /run.sh 2024-03-26 12:32:52 +03:00
squid-keys.asc upd gpg keys 2024-02-07 13:24:03 +03:00
squid-log.conf disable cache_log (duplicated to stdout) 2019-08-11 13:03:36 +03:00
test_localnet.conf sslbump: rootless (#125) 2024-01-24 15:43:29 +03:00

README.md

Docker Image CI Status

docker-squid

Docker Squid container based on Alpine Linux.

Automated builds of the image are available on:

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.