[Wallabag] Adds wallabag
This commit is contained in:
@@ -6,5 +6,6 @@
|
|||||||
# ./immich.nix
|
# ./immich.nix
|
||||||
./storyden.nix
|
./storyden.nix
|
||||||
./tandoor.nix
|
./tandoor.nix
|
||||||
|
./wallabag.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
19
system/hosts/mcp/containers/havenisms.com/wallabag.nix
Normal file
19
system/hosts/mcp/containers/havenisms.com/wallabag.nix
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{ config, ... }:
|
||||||
|
let
|
||||||
|
inherit (import ../lib.nix config) havenisms;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
virtualisation.web-containers.containers.wallabag = {
|
||||||
|
image = "wallabag/wallabag";
|
||||||
|
hostname = "wallabag";
|
||||||
|
domain = havenisms;
|
||||||
|
port = 80;
|
||||||
|
volumes = [
|
||||||
|
"wallabag-data:/var/www/wallabag/data"
|
||||||
|
"wallabag-images:/var/www/wallabag/web/assets/images"
|
||||||
|
];
|
||||||
|
environment = {
|
||||||
|
SYMFONY__ENV__DOMAIN_NAME = "https://wallabag.${havenisms}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user