blob: 269b4c5676e52410771b2e934e3f1378e0830df4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, ... }:
{
services.caddy.virtualHosts."beszel.fuwn.me".extraConfig = "reverse_proxy localhost:8083";
virtualisation.oci-containers.containers.beszel = {
inherit (config.modules.containers) extraOptions;
image = "henrygd/beszel";
autoStart = true;
ports = [ "127.0.0.1:8083:8090" ];
volumes = [ "/mnt/docker/beszel:/beszel_data" ];
};
}
|