You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bumps alpine from 3.17.3 to 3.18.0. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
6 days ago | |
---|---|---|
.github | 2 months ago | |
ssl-bump | 4 years ago | |
.drone.yml | 2 years ago | |
Dockerfile | 6 days ago | |
LICENSE | 6 years ago | |
README.md | 4 months ago | |
docker-compose.test.yml | 3 months ago | |
docker-compose.yml | 6 years ago | |
squid-keys.asc | 2 years ago | |
squid-log.conf | 4 years ago |
README.md
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
.