mirror of
https://github.com/b4tman/docker-squid.git
synced 2025-09-23 08:59:12 +00:00
Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
2fe85c38de
|
|||
17fb8d59a2
|
|||
6b980db7c7 | |||
2d8a60d962 | |||
|
dabb437ea8 | ||
09aba63183
|
|||
358cbfef87
|
|||
494e411d43 | |||
|
d91a5600a9 | ||
|
8781714110 | ||
|
083adc0c03 |
7
.github/workflows/dockerimage.yml
vendored
7
.github/workflows/dockerimage.yml
vendored
@@ -4,7 +4,8 @@ on:
|
||||
push:
|
||||
# Publish `master` as Docker `latest` image.
|
||||
branches:
|
||||
- master
|
||||
- master
|
||||
- v6
|
||||
|
||||
# Publish `v1.2.3` tags as releases.
|
||||
tags:
|
||||
@@ -38,7 +39,7 @@ jobs:
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v3.2.6
|
||||
uses: actions/cache@v3.3.1
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
@@ -127,7 +128,7 @@ jobs:
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v3.2.6
|
||||
uses: actions/cache@v3.3.1
|
||||
with:
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
@@ -18,7 +18,7 @@ jobs:
|
||||
pull-requests: write
|
||||
|
||||
steps:
|
||||
- uses: actions/stale@v7
|
||||
- uses: actions/stale@v8
|
||||
with:
|
||||
days-before-stale: 182
|
||||
days-before-close: 7
|
||||
|
@@ -1,6 +1,6 @@
|
||||
FROM alpine:3.17.2 as build
|
||||
FROM alpine:3.18.0 as build
|
||||
|
||||
ARG SQUID_VER=5.8
|
||||
ARG SQUID_VER=6.0.3
|
||||
|
||||
RUN set -x && \
|
||||
apk add --no-cache \
|
||||
@@ -58,7 +58,7 @@ RUN set -x && \
|
||||
--disable-arch-native \
|
||||
--enable-removal-policies="lru,heap" \
|
||||
--enable-auth-digest \
|
||||
--enable-auth-basic="getpwnam,NCSA,DB" \
|
||||
--enable-auth-basic="getpwnam,NCSA,DB,RADIUS" \
|
||||
--enable-basic-auth-helpers="DB" \
|
||||
--enable-epoll \
|
||||
--enable-external-acl-helpers="file_userip,unix_group,wbinfo_group" \
|
||||
@@ -106,7 +106,7 @@ RUN sed -i '1s;^;include /etc/squid/conf.d/*.conf\n;' /etc/squid/squid.conf && \
|
||||
|
||||
# --- --- --- --- --- --- --- --- ---
|
||||
|
||||
FROM alpine:3.17.2
|
||||
FROM alpine:3.18.0
|
||||
|
||||
ENV SQUID_CONFIG_FILE /etc/squid/squid.conf
|
||||
ENV TZ Europe/Moscow
|
||||
|
Reference in New Issue
Block a user