migrate adguardhome to container
This commit is contained in:
parent
4020891021
commit
0af96c20c6
21
nixos/viridian/containers/adguardhome.nix
Normal file
21
nixos/viridian/containers/adguardhome.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
virtualisation.oci-containers.containers = {
|
||||||
|
adguardhome = {
|
||||||
|
autoStart = true;
|
||||||
|
image = "adguard/adguardhome";
|
||||||
|
ports = [
|
||||||
|
"53:53" # Plain DNS
|
||||||
|
"3000:3000" # WEBGUI
|
||||||
|
];
|
||||||
|
volumes = [
|
||||||
|
"/srv/containers/adguardhome/work:/opt/adguardhome/work"
|
||||||
|
"/srv/containers/adguardhome/conf:/opt/adguardhome/conf"
|
||||||
|
];
|
||||||
|
extraOptions = [
|
||||||
|
"--network=host"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,31 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
# Privacy protection center
|
|
||||||
services.adguardhome = {
|
|
||||||
enable = true;
|
|
||||||
openFirewall = true;
|
|
||||||
settings = {
|
|
||||||
# Web interface IP address to listen on.
|
|
||||||
bind_port = 3000;
|
|
||||||
# Web interface IP port to listen on.
|
|
||||||
bind_host = "0.0.0.0";
|
|
||||||
# Custom DNS responses
|
|
||||||
dns.rewrites = [
|
|
||||||
{ # LAN self-host domain
|
|
||||||
domain = "kanto.dev";
|
|
||||||
answer = "192.168.1.102";
|
|
||||||
}
|
|
||||||
{ # Wildcard subdomains
|
|
||||||
domain = "*.kanto.dev";
|
|
||||||
answer = "kanto.dev";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
mutableSettings = true;
|
|
||||||
};
|
|
||||||
environment.persistence."/persist" = {
|
|
||||||
directories = [ "/var/lib/AdGuardHome" ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue