From 9fd574468a64a240af1a3ff8e93413d8f2fa4b2f Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Wed, 6 Dec 2023 21:17:56 +0100 Subject: [PATCH] fix container options for gitea --- hosts/fw.cloonar.com/modules/gitea.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/fw.cloonar.com/modules/gitea.nix b/hosts/fw.cloonar.com/modules/gitea.nix index c01a58d..4b3aa9e 100644 --- a/hosts/fw.cloonar.com/modules/gitea.nix +++ b/hosts/fw.cloonar.com/modules/gitea.nix @@ -132,7 +132,12 @@ in "ubuntu-latest:docker://node:18-bullseye" ]; settings = { - options = "--add-host=git.cloonar.com:10.42.97.50 --dns=10.42.97.10"; + container = { + options = [ + "--add-host=git.cloonar.com:10.42.97.50" + "--dns=10.42.97.10" + ]; + }; }; };