added nextcloud to homelab

This commit is contained in:
Aly Raffauf 2024-03-07 10:30:20 -05:00
parent b1c0a8aedc
commit b3a3a64d11

View file

@ -47,6 +47,17 @@
"/mnt/Media:/Media" "/mnt/Media:/Media"
]; ];
}; };
nextcloud = {
ports = ["0.0.0.0:80:80" ];
image = "nextcloud:latest";
environment = {
TZ = "America/New_York";
};
volumes = [
"nextcloud:/var/www/html"
"/mnt/Media/NextCloud:/var/www/html/data"
];
};
}; };
}; };
} }