setup media server containers
This commit is contained in:
parent
0243be74c8
commit
93d656baf5
6 changed files with 84 additions and 0 deletions
13
nixos/lavender/containers/homepage.nix
Normal file
13
nixos/lavender/containers/homepage.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
# Homepage
|
||||
virtualisation.oci-containers.containers."homepage" = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/benphelps/homepage:latest";
|
||||
volumes = [
|
||||
"/srv/homepage/config:/app/config"
|
||||
];
|
||||
ports = [ "3000:3000" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue