more docker containers

This commit is contained in:
mjallen18
2024-02-20 16:28:40 -06:00
parent 680f579d7e
commit b599645fd9
5 changed files with 51 additions and 2 deletions

18
nas-apps/nextcloud.nix Normal file
View File

@@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
# nextcloud
virtualisation.oci-containers.containers."nextcloud" = {
autoStart = true;
image = "linuxserver/nextcloud";
ports = [ "9443:443" ];
volumes = [
"/mnt/Safe\ SSD/ssd_app_data/nextcloud:/config"
"/mnt/Main\ Pool/Nextcloud:/data"
];
environment = {
PUID = "911";
PGID = "1000";
TZ = "America/Chicago";
};
};
}