feat(servers): setup podman autoupdate.

This commit is contained in:
CronyAkatsuki 2025-11-01 11:46:14 +01:00
parent 6cefec7b26
commit 49351504e4
7 changed files with 27 additions and 2 deletions

View file

@ -5,6 +5,9 @@
ports = [
"8282:8282"
];
labels = {
"io.containers.autoupdate" = "registry";
};
volumes = [
"/var/lib/syncyomi:/config"
];

View file

@ -8,6 +8,9 @@
environment = {
"SYMFONY__ENV__DOMAIN_NAME" = "https://wallabag.cronyakatsuki.xyz";
};
labels = {
"io.containers.autoupdate" = "registry";
};
volumes = [
"/var/lib/wallabag/data:/var/www/wallabag/data"
"/var/lib/wallabag/images:/var/www/wallabag/web/assets/images"

View file

@ -5,6 +5,9 @@
ports = [
"8001:80"
];
labels = {
"io.containers.autoupdate" = "registry";
};
volumes = [
"/var/lib/website:/usr/share/nginx/html:ro"
];