1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2024-09-21 08:48:05 +00:00
docker-squid/README.md
Dmitry Belyaev 0dcc835803
Update ci (#44)
* + ghcr.io links

* update ci

* more cache moves

* fix cache move after compose test

* output image

* update description and don't login on PR's

* dependabot: actions
2021-06-10 17:17:50 +03:00

1.5 KiB

Drone Build Status Docker Build Status 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.