No description
Find a file
Renovate Bot 58fd5e397f
Some checks failed
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Failing after 17s
Container Publish / build-image (arm64) (push) Failing after 14s
Container Publish / update docker manifest (push) Has been skipped
Merge pull request 'Update module github.com/gin-gonic/gin to v1.12.0' (#3) from renovate/github.com-gin-gonic-gin-1.x into master
2026-03-10 10:37:50 +00:00
.forgejo/workflows publish on master only 2026-03-09 12:36:30 +01:00
rootfs fix custom port 2025-07-29 10:10:14 +02:00
src Update module github.com/gin-gonic/gin to v1.12.0 2026-03-10 10:37:43 +00:00
.dockerignore removed drone traces 2025-10-08 17:25:37 +02:00
Dockerfile updated golang and alpine 2026-03-09 12:50:19 +01:00
LICENSE initial import 2024-03-28 10:29:46 +01:00
README.md removed drone traces 2025-10-08 17:25:37 +02:00
renovate.json updated renovate conf 2026-03-09 12:50:29 +01:00

Dockerized Unbound for caching purposes

Usage with docker compose

version: '3.9'

services:
  dns:
    image: docker.asperti.com/paspo/dnscache:latest
    container_name: zabbix-dns
    ports:
      - 127.0.0.1:1053:1053
      - 127.0.0.1:1053:1053/udp
      - 127.0.0.1:8000:8000  # dns proxy
    environment:
      LOGS: true
      LOGDIR: /logs
      PORT: 1053
      VERBOSITY: 1
      DNSPROXY: true
      ACCESSLOG: true
    volumes:
      - ./logs:/logs

Usage with docker

docker run --rm --name zabbix-dns \
  -p "1053:1053" -p "1053:1053/udp" \
  -ti docker.asperti.com/paspo/dnscache:latest