1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2026-05-01 02:04:13 +03:00
Go to file
dependabot[bot] 9c7cd164d8 Bump actions/cache from 5.0.3 to 5.0.4
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v5.0.3...v5.0.4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-02 12:43:57 +03:00
2026-03-16 16:59:26 +03:00
2017-02-08 09:37:36 +03:00
2026-03-05 13:56:44 +03:00
2024-03-26 12:32:52 +03:00
2024-02-07 13:24:03 +03:00

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

By default, the image now includes a local network allow-list (/etc/squid/conf.d/localnet.conf) so clients from RFC1918/RFC4193 ranges can connect without mounting an extra ACL file.

The image also includes apache2-utils, so you can generate and manage htpasswd files directly in the container for basic authentication setups.

Environment variables:

  • SQUID_CONFIG_FILE: Specify the configuration file for squid. Defaults to /etc/squid/squid.conf.
  • TZ: Override the container timezone (for example, Europe/Berlin).

You can configure Squid in multiple ways:

  • Replace the main configuration file by overriding SQUID_CONFIG_FILE.
  • Add configuration snippets to /etc/squid/conf.d: all *.conf files from this directory are included at the beginning of the default configuration.
  • Add configuration snippets to /etc/squid/conf.d.tail: all *.conf files from this directory are included at the end of the default configuration.

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.

Description
squid прокси в контейнере
Readme MIT 794 KiB
Languages
Dockerfile 85.1%
Shell 14.9%