1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2025-12-15 22:02:35 +00:00

25 Commits

Author SHA1 Message Date
ba0d25813e dockerhub login for build in drone cloud
https://discourse.drone.io/t/how-to-prevent-dockerhub-pull-rate-limit-errors/8324
2021-05-17 17:05:24 +03:00
f1c7c6796f bump squid to 4.15 2021-05-17 16:31:10 +03:00
dependabot[bot]
0e581bd499 Bump alpine from 3.13.4 to 3.13.5
Bumps alpine from 3.13.4 to 3.13.5.

Signed-off-by: dependabot[bot] <support@github.com>
2021-05-01 11:17:41 +03:00
dependabot[bot]
bc32b5d1da Bump alpine from 3.13.2 to 3.13.4
Bumps alpine from 3.13.2 to 3.13.4.

Signed-off-by: dependabot[bot] <support@github.com>
2021-04-01 09:04:41 +03:00
dependabot[bot]
7e71d6c43b Bump alpine from 3.13.1 to 3.13.2
Bumps alpine from 3.13.1 to 3.13.2.

Signed-off-by: dependabot[bot] <support@github.com>
2021-03-01 08:59:31 +03:00
3d2e367c14 bump squid to 4.14 2021-02-16 21:02:46 +03:00
f5fbbb9034 fix docker cloud build status url 2021-02-11 21:46:14 +03:00
dependabot[bot]
a56bf2890d Bump alpine from 3.12.3 to 3.13.1
Bumps alpine from 3.12.3 to 3.13.1.

Signed-off-by: dependabot[bot] <support@github.com>
2021-01-29 21:50:01 +03:00
dependabot[bot]
88f5a067fb Bump alpine from 3.12.1 to 3.12.3
Bumps alpine from 3.12.1 to 3.12.3.

Signed-off-by: dependabot[bot] <support@github.com>
2021-01-01 13:03:24 +03:00
dependabot[bot]
b90f70705c Bump alpine from 3.12.0 to 3.12.1
Bumps alpine from 3.12.0 to 3.12.1.

Signed-off-by: dependabot[bot] <support@github.com>
2020-11-01 12:25:08 +03:00
6eb782b5a6 Migrate to GitHub Container Registry
from GitHub Packages
https://docs.github.com/en/free-pro-team@latest/packages/getting-started-with-github-container-registry/migrating-to-github-container-registry-for-docker-images
2020-10-04 22:49:22 +03:00
c3138cec07 Merge pull request #33 from gianluca-mascolo/unittest
Feature: Use squidclient for unit test
2020-10-04 18:04:55 +03:00
gianluca-mascolo
d01a447dcf changed docker-compose version to support start_period 2020-10-04 16:18:04 +02:00
gianluca-mascolo
6486bd001c fix docker-compose version 2020-10-04 11:57:30 +02:00
gianluca-mascolo
212bdefa3b use squidclient for unit test 2020-10-03 17:49:14 +02:00
gianluca-mascolo
824146b6c6 compile install squidclient 2020-10-03 17:46:01 +03:00
bee8e01cb0 bump to 4.13 2020-08-28 14:24:23 +03:00
e36539188f limit make jobs 2020-08-16 16:34:51 +03:00
ebe487186b add drone status badge 2020-08-16 16:31:27 +03:00
6e0968cb97 remove dependabot badge 2020-08-16 16:25:59 +03:00
9aa1dbd893 remove microbadger 2020-08-16 16:25:17 +03:00
1a682a86c9 fix drone secrets for github pkgs 2020-08-16 16:06:05 +03:00
cb78e8c285 fix drone secrets
err:
"Registry credentials or Docker config not provided. Guest mode enabled."
2020-08-16 15:48:10 +03:00
4251447c9d add drone pipeline for arm image (#30)
fix #27
2020-08-16 14:45:13 +03:00
e4ce0fe599 enable kerberos auth (fix #28) 2020-08-13 16:33:27 +03:00
8 changed files with 173 additions and 121 deletions

37
.drone.yml Normal file
View File

@@ -0,0 +1,37 @@
---
kind: pipeline
type: docker
name: arm32 images
platform:
os: linux
arch: arm
steps:
- name: squid image for dockerhub
image: plugins/docker
settings:
repo: docker.io/b4tman/squid
auto_tag: true
auto_tag_suffix: armhf
pull_image: true
registry: docker.io
username: b4tman
password:
from_secret: docker_password
config:
from_secret: docker_config
- name: squid-armhf image for github packages
image: plugins/docker
settings:
repo: ghcr.io/b4tman/squid-armhf
auto_tag: true
pull_image: true
registry: ghcr.io
username: b4tman
password:
from_secret: github_password
config:
from_secret: docker_config
trigger:
ref:
- refs/tags/**
- refs/heads/master

View File

@@ -1,84 +1,83 @@
name: Docker Image CI
on:
push:
# Publish `master` as Docker `latest` image.
branches:
- master
- armhf-cross
# Publish `v1.2.3` tags as releases.
tags:
- v*
# Run tests for any PRs.
pull_request:
jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build squid image
run: docker build . --file Dockerfile --tag b4tman/squid
- name: Test image
run: docker-compose -f docker-compose.test.yml up sut
- name: Build 'ssl-bump' image
run: docker build ssl-bump --tag b4tman/squid:ssl-bump
push:
needs: test
runs-on: ubuntu-18.04
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Build squid image
run: docker build . --file Dockerfile --tag b4tman/squid
- name: Build 'ssl-bump' image
run: docker build ssl-bump --tag b4tman/squid:ssl-bump
- name: Log into registry
run: echo "${{ secrets.GITHUB_PKGS_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Push squid image
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/squid
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag b4tman/squid $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
- name: Push 'ssl-bump' image
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/ssl-bump
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag b4tman/squid:ssl-bump $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
name: Docker Image CI
on:
push:
# Publish `master` as Docker `latest` image.
branches:
- master
# Publish `v1.2.3` tags as releases.
tags:
- v*
# Run tests for any PRs.
pull_request:
jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Build squid image
run: docker build . --file Dockerfile --tag b4tman/squid
- name: Test image
run: docker-compose -f docker-compose.test.yml up sut
- name: Build 'ssl-bump' image
run: docker build ssl-bump --tag b4tman/squid:ssl-bump
push:
needs: test
runs-on: ubuntu-18.04
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Build squid image
run: docker build . --file Dockerfile --tag b4tman/squid
- name: Build 'ssl-bump' image
run: docker build ssl-bump --tag b4tman/squid:ssl-bump
- name: Log into registry
run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push squid image
run: |
IMAGE_ID=ghcr.io/${{ github.actor }}/squid
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag b4tman/squid $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
- name: Push 'ssl-bump' image
run: |
IMAGE_ID=ghcr.io/${{ github.actor }}/squid-ssl-bump
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag b4tman/squid:ssl-bump $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION

View File

@@ -1,10 +1,8 @@
FROM b4tman/armhf-alpine-qemu:latest as build
FROM alpine:3.13.5 as build
ENV SQUID_VER 4.12
ENV SQUID_VER 4.15
ENV SQUID_SIG_KEY B06884EDB779C89B044E64E3CD6DBF8EF3B17D3E
RUN [ "cross-build-start" ]
RUN set -x && \
apk add --no-cache \
gcc \
@@ -65,7 +63,7 @@ RUN set -x && \
--enable-epoll \
--enable-external-acl-helpers="file_userip,unix_group,wbinfo_group" \
--enable-auth-ntlm="fake" \
--enable-auth-negotiate="wrapper" \
--enable-auth-negotiate="kerberos,wrapper" \
--enable-silent-rules \
--disable-mit \
--enable-heimdal \
@@ -95,23 +93,22 @@ RUN set -x && \
--with-openssl \
--with-pidfile=/var/run/squid/squid.pid
RUN set -x && \
cd /tmp/build && \
make -j $(grep -cs ^processor /proc/cpuinfo) && \
make install
nproc=$(n=$(nproc) ; max_n=6 ; [ $n -le $max_n ] && echo $n || echo $max_n) && \
make -j $nproc && \
make install && \
cd tools/squidclient && make && make install-strip
RUN sed -i '1s;^;include /etc/squid/conf.d/*.conf\n;' /etc/squid/squid.conf
RUN echo 'include /etc/squid/conf.d.tail/*.conf' >> /etc/squid/squid.conf
RUN [ "cross-build-end" ]
FROM b4tman/armhf-alpine-qemu:latest
FROM alpine:3.13.5
ENV SQUID_CONFIG_FILE /etc/squid/squid.conf
ENV TZ Europe/Moscow
RUN [ "cross-build-start" ]
RUN set -x && \
deluser squid 2>/dev/null; delgroup squid 2>/dev/null; \
addgroup -S squid -g 3128 && adduser -S -u 3128 -G squid -g squid -H -D -s /bin/false -h /var/cache/squid squid
@@ -128,6 +125,8 @@ COPY --from=build /etc/squid/ /etc/squid/
COPY --from=build /usr/lib/squid/ /usr/lib/squid/
COPY --from=build /usr/share/squid/ /usr/share/squid/
COPY --from=build /usr/sbin/squid /usr/sbin/squid
COPY --from=build /usr/bin/squidclient /usr/bin/squidclient
RUN install -d -o squid -g squid \
/var/cache/squid \
@@ -145,9 +144,7 @@ RUN set -x && \
apk add --no-cache --virtual .tz alpine-conf tzdata && \
/sbin/setup-timezone -z $TZ && \
apk del .tz
RUN [ "cross-build-end" ]
VOLUME ["/var/cache/squid"]
EXPOSE 3128/tcp

View File

@@ -1,6 +1,5 @@
[![](https://images.microbadger.com/badges/image/b4tman/squid:armhf-cross.svg)](https://microbadger.com/images/b4tman/squid:armhf "Get your own image badge on microbadger.com")
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=b4tman/docker-squid)](https://dependabot.com)
![Docker Build Status](https://img.shields.io/docker/build/b4tman/squid)
[![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)
![Docker Image CI Status](https://github.com/b4tman/docker-squid/workflows/Docker%20Image%20CI/badge.svg)
# docker-squid

20
docker-compose.test.yml Normal file
View File

@@ -0,0 +1,20 @@
version: '2.3'
services:
proxy:
image: squidproxy
build:
context: .
dockerfile: Dockerfile
healthcheck:
test: ["CMD", "sh", "-exc", "squidclient -T 3 mgr:info 2> /dev/null | grep -qF '200 OK'"]
interval: 5s
timeout: 3s
retries: 5
start_period: 1s
sut:
image: squidproxy
links:
- proxy
depends_on:
- proxy
command: sh -exc "sleep 10 && squidclient -h proxy -T 3 'https://postman-echo.com/get?squidtest=ok' 2> /dev/null | grep -qF '200 OK'"

View File

@@ -1,12 +1,12 @@
version: '2'
services:
squid:
image: 'b4tman/squid:armhf-cross'
container_name: 'my-squid'
restart: always
ports:
- '3128:3128'
# environment:
# SQUID_CONFIG_FILE: /etc/squid/my-squid.conf
# volumes:
# - './my-squid.conf:/etc/squid/my-squid.conf:ro'
version: '2'
services:
squid:
image: 'b4tman/squid'
container_name: 'my-squid'
restart: always
ports:
- '3128:3128'
# environment:
# SQUID_CONFIG_FILE: /etc/squid/my-squid.conf
# volumes:
# - './my-squid.conf:/etc/squid/my-squid.conf:ro'

View File

@@ -1,4 +1,4 @@
logfile_rotate 0
cache_store_log none
access_log stdio:/proc/self/fd/1
cache_log /dev/null
logfile_rotate 0
cache_store_log none
access_log stdio:/proc/self/fd/1
cache_log /dev/null

View File

@@ -1,4 +1,4 @@
FROM b4tman/squid:armhf-cross
USER root
FROM b4tman/squid
USER root
CMD ["sh", "-c", "(test -d /var/cache/squid/ssl_db || /usr/lib/squid/security_file_certgen -c -s /var/cache/squid/ssl_db -M 4MB) && /usr/sbin/squid -f ${SQUID_CONFIG_FILE} --foreground -z && exec /usr/sbin/squid -f ${SQUID_CONFIG_FILE} --foreground -YCd 1"]