From 8bfdaab762da951ea185250a77a11d622d62e23f Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Tue, 22 Oct 2024 00:21:20 +0300 Subject: [PATCH] feat(systems/hosts/oci): remove websites from oci --- systems/hosts/oci/default.nix | 1 - systems/hosts/oci/websites.nix | 37 ---------------------------------- 2 files changed, 38 deletions(-) delete mode 100644 systems/hosts/oci/websites.nix diff --git a/systems/hosts/oci/default.nix b/systems/hosts/oci/default.nix index 14d71e9..5d29a3a 100644 --- a/systems/hosts/oci/default.nix +++ b/systems/hosts/oci/default.nix @@ -4,7 +4,6 @@ in { imports = [ ./umami.nix - ./websites.nix ]; networking.firewall.allowedTCPPorts = [ diff --git a/systems/hosts/oci/websites.nix b/systems/hosts/oci/websites.nix deleted file mode 100644 index 288abe8..0000000 --- a/systems/hosts/oci/websites.nix +++ /dev/null @@ -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"; - }; - }; -} -- 2.44.1