Compare commits

..
6 Commits
Author SHA1 Message Date
b4tman 7901f03cc1 bump squid to 7.7 2026-08-24 14:51:00 +03:00
webbrain-one 0aa934559f docs: improve README 2026-08-16 11:16:43 +03:00
dependabot[bot] 90fff72a47 Bump actions/stale from 10 to 11
Bumps [actions/stale](https://github.com/actions/stale) from 10 to 11.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/stale/compare/v10...v11)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-version: '11'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-08-04 14:44:42 +03:00
dependabot[bot] 7507dc1bd5 Bump alpine from 3.23.4 to 3.24.1
Bumps alpine from 3.23.4 to 3.24.1.

---
updated-dependencies:
- dependency-name: alpine
  dependency-version: 3.24.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-04 20:55:54 +03:00
dependabot[bot] 9953814fdd Bump actions/cache from 5.0.5 to 6.1.0
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.1.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v5.0.5...v6.1.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-04 20:08:10 +03:00
dependabot[bot] 4bd4e1b780 Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-04 16:01:31 +03:00
4 changed files with 11 additions and 9 deletions
+4 -4
View File
@@ -23,7 +23,7 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v7
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v4 uses: docker/setup-qemu-action@v4
@@ -39,7 +39,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Cache Docker layers - name: Cache Docker layers
uses: actions/cache@v5.0.5 uses: actions/cache@v6.1.0
with: with:
path: /tmp/.buildx-cache path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }} key: ${{ runner.os }}-buildx-${{ github.sha }}
@@ -102,7 +102,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v7
- name: Docker meta - name: Docker meta
id: meta id: meta
@@ -153,7 +153,7 @@ jobs:
uses: docker/setup-buildx-action@v4 uses: docker/setup-buildx-action@v4
- name: Cache Docker layers - name: Cache Docker layers
uses: actions/cache@v5.0.5 uses: actions/cache@v6.1.0
with: with:
path: /tmp/.buildx-cache path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }} key: ${{ runner.os }}-buildx-${{ github.sha }}
+1 -1
View File
@@ -18,7 +18,7 @@ jobs:
pull-requests: write pull-requests: write
steps: steps:
- uses: actions/stale@v10 - uses: actions/stale@v11
with: with:
days-before-stale: 182 days-before-stale: 182
days-before-close: 7 days-before-close: 7
+3 -3
View File
@@ -1,6 +1,6 @@
FROM alpine:3.23.4 AS build FROM alpine:3.24.1 AS build
ARG SQUID_VER=7.6 ARG SQUID_VER=7.7
RUN set -x && \ RUN set -x && \
apk add --no-cache \ apk add --no-cache \
@@ -103,7 +103,7 @@ RUN sed -i '1s;^;include /etc/squid/conf.d/*.conf\n;' /etc/squid/squid.conf && \
# --- --- --- --- --- --- --- --- --- # --- --- --- --- --- --- --- --- ---
FROM alpine:3.23.4 FROM alpine:3.24.1
ENV SQUID_CONFIG_FILE=/etc/squid/squid.conf ENV SQUID_CONFIG_FILE=/etc/squid/squid.conf
ENV TZ=Europe/Moscow ENV TZ=Europe/Moscow
+3 -1
View File
@@ -1,3 +1,5 @@
![Docker Image CI Status](https://github.com/b4tman/docker-squid/workflows/Docker%20Image%20CI/badge.svg) ![Docker Image CI Status](https://github.com/b4tman/docker-squid/workflows/Docker%20Image%20CI/badge.svg)
# docker-squid # docker-squid
@@ -25,7 +27,7 @@ or use [docker-compose](https://docs.docker.com/compose/):
```bash ```bash
wget https://raw.githubusercontent.com/b4tman/docker-squid/master/docker-compose.yml wget https://raw.githubusercontent.com/b4tman/docker-squid/master/docker-compose.yml
docker-compose up docker compose up -d
``` ```
# Configuration # Configuration