From 32190dec68e9cd3aea4cb50b404409286fd5a174 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sat, 25 Jan 2025 21:24:27 -0500 Subject: [PATCH] act cache ports Signed-off-by: ahuston-0 --- systems/palatine-hill/docker/act-runner.nix | 1 + systems/palatine-hill/firewall.nix | 1 + systems/palatine-hill/gitea.nix | 6 ++++++ 3 files changed, 8 insertions(+) diff --git a/systems/palatine-hill/docker/act-runner.nix b/systems/palatine-hill/docker/act-runner.nix index 7cea883..be6476a 100644 --- a/systems/palatine-hill/docker/act-runner.nix +++ b/systems/palatine-hill/docker/act-runner.nix @@ -17,6 +17,7 @@ in "com.centurylinklabs.watchtower.enable" = "true"; "com.centurylinklabs.watchtower.scope" = "act-runner"; }; + ports = [ "8088:8088" ]; volumes = [ "${act_path}/stable-latest-1/config.yaml:/config.yaml" "${act_path}/stable-latest-1/data:/data" diff --git a/systems/palatine-hill/firewall.nix b/systems/palatine-hill/firewall.nix index 09c797c..d6033a1 100644 --- a/systems/palatine-hill/firewall.nix +++ b/systems/palatine-hill/firewall.nix @@ -17,6 +17,7 @@ # gitea 2222 2223 + 8088 ]; } diff --git a/systems/palatine-hill/gitea.nix b/systems/palatine-hill/gitea.nix index 882ebe9..25b8b85 100644 --- a/systems/palatine-hill/gitea.nix +++ b/systems/palatine-hill/gitea.nix @@ -39,6 +39,12 @@ in LEVEL = "Trace"; ENABLE_SSH_LOG = true; }; + cache = { + enabled = true; + dir = ""; + host = "192.168.76.2"; + port = "8088"; + }; }; stateDir = base_path; lfs.enable = true;