Add wallabag to kernighan
This commit is contained in:
parent
11d9ebee99
commit
2196c3d2bf
|
@ -11,6 +11,7 @@
|
|||
../shared/services/miniflux.nix
|
||||
../shared/services/nginx.nix
|
||||
../shared/services/radicale.nix
|
||||
../shared/services/wallabag.nix
|
||||
];
|
||||
|
||||
networking = {
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
virtualisation.oci-containers.containers = {
|
||||
wallabag = {
|
||||
image = "wallabag/wallabag:2.6.7";
|
||||
environment = {
|
||||
SYMFONY__ENV__DOMAIN_NAME = "http://localhost";
|
||||
};
|
||||
volumes = [
|
||||
"/opt/wallabag/data:/var/www/wallabag/data",
|
||||
"/opt/wallabag/images:/var/www/wallabag/images",
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue