Adguard added

This commit is contained in:
Maurice
2025-09-29 21:09:22 +02:00
parent 5491663d86
commit 9d600ffbcf
5 changed files with 312 additions and 3 deletions

View File

@@ -0,0 +1,58 @@
user = "podman"
capabilities = ["NET_BIND_SERVICE", "NET_RAW", "NET_ADMIN"]
[service]
name = "adguard"
image = "adguard/adguardhome"
[[volumes]]
source = "adguard-data"
target = "/opt/adguardhome/work"
create = true
[[volumes]]
source = "adguard-certs"
target = "/opt/adguardhome/certificates"
create = true
[[volumes]]
source = "$HOME/adguard"
target = "/opt/adguardhome/conf"
[[ports]]
host = 8888
container = 8080
# DNS ports
[[ports]]
host = 53
container = 53
protocol = "udp"
[[ports]]
host = 53
container = 53
protocol = "tcp"
# DHCP ports
[[ports]]
host = 67
container = 67
protocol = "udp"
[[ports]]
host = 68
container = 68
protocol = "udp"
# DNS-over-TLS
[[ports]]
host = 853
container = 853
protocol = "tcp"
# DNS-over-QUIC (784/853/8853)
[[ports]]
host = 784
container = 784
protocol = "udp"