changed backend to podman, don't make me regret it

This commit is contained in:
2024-07-04 15:26:07 -06:00
parent f177fde0ef
commit 0f09750417
10 changed files with 13 additions and 16 deletions

View File

@@ -8,7 +8,6 @@ in {
config = lib.mkIf config.my.servers.multi-scrobbler.enable {
sops.secrets.multi-scrobbler.sopsFile = ../../secrets/env.yaml;
virtualisation.oci-containers = {
backend = "docker";
containers.multi-scrobbler = {
image = "foxxmd/multi-scrobbler";
ports = [ "${toString port}:${toString port}" ];
@@ -21,7 +20,7 @@ in {
DEEZER_REDIRECT_URI = "http://${config.my.miniserver-ip}:${
toString port
}/deezer/callback";
MALOJA_URL = "https://maloja.${config.my.domain}";
MALOJA_URL = "http://maloja:42010";
WS_ENABLE = "true";
};
volumes = [ "${config.my.containerData}/multi-scrobbler:/config" ];