2021-06-10 14:17:50 +00:00
|
|
|
[![Drone Build Status](https://cloud.drone.io/api/badges/b4tman/docker-squid/status.svg?ref=refs/heads/master)](https://cloud.drone.io/b4tman/docker-squid)
|
|
|
|
![Docker Build Status](https://img.shields.io/docker/cloud/build/b4tman/squid)
|
2019-09-04 08:08:05 +00:00
|
|
|
![Docker Image CI Status](https://github.com/b4tman/docker-squid/workflows/Docker%20Image%20CI/badge.svg)
|
2017-02-13 11:22:19 +00:00
|
|
|
|
2017-02-08 06:37:36 +00:00
|
|
|
# docker-squid
|
2017-02-08 07:07:59 +00:00
|
|
|
|
2017-02-13 11:22:19 +00:00
|
|
|
Docker Squid container based on Alpine Linux.
|
|
|
|
|
2021-06-10 14:17:50 +00:00
|
|
|
Automated builds of the image are available on:
|
|
|
|
|
|
|
|
- DockerHub:
|
|
|
|
- [b4tman/squid](https://hub.docker.com/r/b4tman/squid)
|
|
|
|
- Github:
|
|
|
|
- [ghcr.io/b4tman/squid](https://github.com/users/b4tman/packages/container/package/squid)
|
|
|
|
- [ghcr.io/b4tman/squid-armhf](https://github.com/users/b4tman/packages/container/package/squid-armhf)
|
|
|
|
- [ghcr.io/b4tman/squid-ssl-bump](https://github.com/users/b4tman/packages/container/package/squid-ssl-bump)
|
2017-02-13 11:22:19 +00:00
|
|
|
|
|
|
|
# Quick Start
|
|
|
|
|
|
|
|
Just launch container:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
docker run -p 3128:3128 b4tman/squid
|
|
|
|
```
|
|
|
|
|
|
|
|
or use [docker-compose](https://docs.docker.com/compose/):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
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:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
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
|
|
|
|
```
|
2017-02-08 07:07:59 +00:00
|
|
|
|
2021-06-10 14:17:50 +00:00
|
|
|
This will start a squid container with your config file `/srv/docker/squid/squid.conf`.
|