M systems/hosts/oci/default.nix => systems/hosts/oci/default.nix +0 -1
@@ 4,7 4,6 @@
in {
imports = [
./umami.nix
- ./websites.nix
];
networking.firewall.allowedTCPPorts = [
D systems/hosts/oci/websites.nix => systems/hosts/oci/websites.nix +0 -37
@@ 1,37 0,0 @@
-{...}: let
- comPort = 8080;
- devPort = 8081;
-in {
- networking.firewall.allowedTCPPorts = [
- comPort
- devPort
- ];
-
- virtualisation.oci-containers.containers."liljamo-com-zola" = {
- image = "localhost:5000/liljamo/liljamo-com-zola:latest";
- extraOptions = [
- "--tls-verify=false"
- ];
- hostname = "liljamo-com-zola";
- ports = [
- "${toString comPort}:80"
- ];
- labels = {
- "io.containers.autoupdate" = "registry";
- };
- };
-
- virtualisation.oci-containers.containers."liljamo-dev-zola" = {
- image = "localhost:5000/liljamo/liljamo-dev-zola:latest";
- hostname = "liljamo-dev-zola";
- extraOptions = [
- "--tls-verify=false"
- ];
- ports = [
- "${toString devPort}:80"
- ];
- labels = {
- "io.containers.autoupdate" = "registry";
- };
- };
-}