more docker containers
This commit is contained in:
18
nas-apps/nextcloud.nix
Normal file
18
nas-apps/nextcloud.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user