Squid compiler built from official sources. The image does not include compilation tools.
590
Minimal Docker image running Squid.
docker pull cristol/squid
docker run -d --name Squid \
-p 3128:3128 \
-v /etc/squid:/etc/squid:ro \
-v /var/log/squid:/var/log/squid \
-e TZ=Europe/Paris \
-e CHECKCONF=true \
-e PUID=1000 \
-e PGID=1000 \
--restart always \
cristol/squid
Environment variables supported (defaults):
TZ: timezone inside the container (Optional, default: Europe/Paris).CHECKCONF: check conf on start (Optional, default: true).PUID: Set squid UID (Optional, default: 1000)PGID: Set squid GID (Optional, default: 1000)docker compose up -d
Logs are bind-mounted on the host and can be accessed from the /var/log/squid directory.
Cristol Bardou
Content type
Image
Digest
sha256:23e9e55fb…
Size
83.5 MB
Last updated
10 days ago
docker pull cristol/squid