This is an automated archive made by the Lemmit Bot.
The original was posted on /r/selfhosted by /u/ElevenNotes on 2025-03-28 10:07:00+00:00.
SYNOPSIS 📖
What can I do with this? Block most ads from most websites, have entire categories blocked on your or other networks or for individual clients. Perfect for parents and enterprises alike.
UNIQUE VALUE PROPOSITION 💶
Why should I run this image and not the other image(s) that already exist? Good question! All the other images on the market that do exactly the same don’t do or offer these options:
- This image runs as 1000:1000 by default, most other images run everything as root
- This image has no shell since it is 100% distroless, most other images run on a distro like Debian or Alpine with full shell access (security)
- This image does not ship with any critical or high rated CVE and is automatically maintained via CI/CD, most other images mostly have no CVE scanning or code quality tools in place
- This image is created via a secure, pinned CI/CD process and immune to upstream attacks, most other images have upstream dependencies that can be exploited
- This image contains a patch to run rootless (Linux caps needed), most other images require higher caps
- This image contains a proper health check that verifies the app is actually working, most other images have either no health check or only check if a port is open or ping works
If you value security, simplicity and the ability to interact with the maintainer and developer of an image. Using my images is a great start in that direction.
Links: Github, Docker Hub
Compose (example):
name: "adguard" # this is a compose example for adguard
services:
adguard:
image: "11notes/adguard:0.107.59"
environment:
TZ: "Europe/Zurich"
volumes:
- "etc:/adguard/etc"
- "var:/adguard/var"
ports:
- "53:53/udp"
- "53:53/tcp"
- "8443:8443/tcp"
networks:
frontend:
sysctls:
net.ipv4.ip\_unprivileged\_port\_start: 53
restart: "always"
volumes:
etc:
var:
networks:
frontend:
REDDIT 🦥
You probably ask yourself why you should care about an image of an app that has more than 100M downloads from the creator already. Well, it’s simple, check the UVP info’s. I try to spread security awareness about the images that people run in their daily lives. I also try to make them more secure and better by default, not by opt-in. If this is something you care about or would like to care about, then this image is probably for you. If you don’t care about any of this, then it’s not. Keep using the images you like and prefer, but it’s good to have options, especially more secure options. Stay safe ❤️.