feat(odin): added syncyomi, minon sync.

This commit is contained in:
CronyAkatsuki 2025-05-11 21:32:05 +02:00
parent 5e66501370
commit 266dbeb854
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{...}: {
virtualisation.oci-containers.containers.syncyomi = {
image = "ghcr.io/syncyomi/syncyomi:latest";
autoStart = true;
ports = [
"8282:8282"
];
volumes = [
"/var/lib/syncyomi:/config"
];
};
services.traefik.dynamicConfigOptions.http = {
services.syncyomi.loadBalancer.servers = [
{
url = "http://localhost:8282";
}
];
routers.syncyomi = {
rule = "Host(`syncyomi.cronyakatsuki.xyz`)";
tls = {
certResolver = "porkbun";
};
service = "syncyomi";
entrypoints = "websecure";
};
};
}