1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2024-09-21 00:38:03 +00:00
squid прокси в контейнере
Go to file
dependabot[bot] 23eacf4e57 Bump actions/cache from 3.2.4 to 3.2.6
Bumps [actions/cache](https://github.com/actions/cache) from 3.2.4 to 3.2.6.
- [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/v3.2.4...v3.2.6)

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

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-01 10:06:58 +03:00
.github Bump actions/cache from 3.2.4 to 3.2.6 2023-03-01 10:06:58 +03:00
ssl-bump add ssl-bump Dockerfile 2019-06-04 12:29:11 +03:00
.drone.yml dockerhub login for build in drone cloud 2021-05-17 17:05:24 +03:00
docker-compose.test.yml changed docker-compose version to support start_period 2020-10-04 16:18:04 +02:00
docker-compose.yml update README and docker-compose example 2017-02-13 14:22:19 +03:00
Dockerfile Bump alpine from 3.16.2 to 3.17.2 2023-02-17 16:55:51 +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
squid-keys.asc fix sig verification 2021-07-01 14:16:57 +03:00
squid-log.conf disable cache_log (duplicated to stdout) 2019-08-11 13:03:36 +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

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.