mirror of
https://github.com/b4tman/docker-squid.git
synced 2024-11-22 03:06:53 +00:00
squid прокси в контейнере
Dmitry
2e3e78056d
keys imported from http://www.squid-cache.org/pgp.asc from https://sks-keyservers.net : > This service is deprecated. This means it is no longer maintained, and new HKPS certificates will not be issued. Service reliability should not be expected. > > Update 2021-06-21: Due to even more GDPR takedown requests, the DNS records for the pool will no longer be provided at all. |
||
---|---|---|
.github | ||
ssl-bump | ||
.drone.yml | ||
docker-compose.test.yml | ||
docker-compose.yml | ||
Dockerfile | ||
LICENSE | ||
README.md | ||
squid-keys.asc | ||
squid-log.conf |
docker-squid
Docker Squid container based on Alpine Linux.
Automated builds of the image are available on:
- DockerHub:
- Github:
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
.