jellyfin to docker

This commit is contained in:
mjallen18
2024-02-18 18:14:32 -06:00
parent 31f819d471
commit 9c088f2f43
3 changed files with 52 additions and 9 deletions

20
nas-apps/swag.nix Normal file
View File

@@ -0,0 +1,20 @@
{ config, pkgs, ... }:
{
# Swag
virtualisation.oci-containers.containers."portainer" = {
autoStart = true;
image = "linuxserver/swag";
ports = [ "80:80" "443:443" ];
volumes = [
"/mnt/Safe\ SSD/ssd_app_data/swag:/config"
];
environment = {
PGID = 1000;
PUID = 1000;
TZ = "America/Chicago";
URL = "mjallen.dev";
VALIDATION = "http";
SUBDOMAINS = "jellyfin,hass,cloud,jellyseer";
};
};
}