podman: added auto update labels
This commit is contained in:
parent
214cf36daf
commit
93c2e8ac5d
|
@ -5,7 +5,7 @@ let
|
|||
pihole = podman.pihole;
|
||||
inherit (lib) mkIf attrsets;
|
||||
ip = "10.88.1.1";
|
||||
image = "pihole/pihole:latest";
|
||||
image = "docker.io/pihole/pihole:latest";
|
||||
piholeDNSIPBind = "192.168.100.3";
|
||||
in
|
||||
{
|
||||
|
@ -82,6 +82,9 @@ in
|
|||
"--cap-add=SYS_NICE"
|
||||
"--cap-add=CHOWN"
|
||||
];
|
||||
labels = {
|
||||
"io.containers.autoupdate" = "registry";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -48,6 +48,9 @@ in
|
|||
"--ip=${ip}"
|
||||
"--network=podman"
|
||||
];
|
||||
labels = {
|
||||
"io.containers.autoupdate" = "registry";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -39,6 +39,9 @@ in
|
|||
"--network=podman"
|
||||
"--ip=${ip}"
|
||||
];
|
||||
labels = {
|
||||
"io.containers.autoupdate" = "registry";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -39,6 +39,9 @@ in
|
|||
"--network=podman"
|
||||
"--ip=${ip}"
|
||||
];
|
||||
labels = {
|
||||
"io.containers.autoupdate" = "registry";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -66,6 +66,9 @@ in
|
|||
"--ip=${ip-flaresolverr}"
|
||||
"--network=podman"
|
||||
];
|
||||
labels = {
|
||||
"io.containers.autoupdate" = "registry";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -76,6 +76,9 @@ in
|
|||
"--ip=${ip}"
|
||||
"--network=podman"
|
||||
];
|
||||
labels = {
|
||||
"io.containers.autoupdate" = "registry";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue