[mcp] Updates to 25.05 and adds FreshRSS. Removes Focalboard and Bookstack
This commit is contained in:
@@ -3,8 +3,7 @@
|
||||
{
|
||||
# Additional configuration
|
||||
imports = [
|
||||
./containers/bookstack.nix
|
||||
./containers/focalboard.nix
|
||||
./containers/freshrss.nix
|
||||
./containers/gitea.nix
|
||||
./containers/grafana.nix
|
||||
./containers/jobhunt.nix
|
||||
|
||||
20
system/hosts/mcp/containers/freshrss.nix
Normal file
20
system/hosts/mcp/containers/freshrss.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ config, ... }:
|
||||
let
|
||||
inherit (import ./lib.nix config) mkContainer havenisms;
|
||||
in {
|
||||
virtualisation.oci-containers.containers.freshrss = mkContainer {
|
||||
image = "lscr.io/linuxserver/freshrss:latest";
|
||||
hostName = "freshrss";
|
||||
domain = havenisms;
|
||||
port = "80";
|
||||
homepageOpts = {
|
||||
group = "Apps";
|
||||
name = "FreshRSS";
|
||||
icon = "freshrss.svg";
|
||||
description = "Feed aggregator";
|
||||
};
|
||||
volumes = [
|
||||
"/tank/config/freshrss:/config"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user