WIP: podman: Configure auto-updates

This commit is contained in:
Tristan Daniël Maat 2021-05-15 22:29:02 +01:00
parent 2d61711e07
commit bb9f0e93b2
Signed by: tlater
GPG key ID: 49670FD774E43268
3 changed files with 356 additions and 2 deletions
configuration/services

View file

@ -17,7 +17,7 @@
containers = {
gitea = {
image = "gitea/gitea:latest";
image = "docker.io/gitea/gitea:latest";
volumes = [ "gitea:/data:Z" "/etc/localtime:/etc/localtime:ro" ];
dependsOn = [ "postgres" ];
@ -35,6 +35,10 @@
DOMAIN = "gitea.tlater.net";
SSH_PORT = "2221";
};
extraOptions = [
"--label" "io.containers.autoupdate=image"
];
};
postgres = {