feat: add searxng

This commit is contained in:
Yuris Cakranegara
2025-06-08 19:22:05 +10:00
parent 72c525ce60
commit 88f171425b
3 changed files with 67 additions and 1 deletions

View File

@@ -58,3 +58,9 @@ module "n8n" {
volume_path = "${local.volume_host}/n8n"
networks = [module.homelab_docker_network.name]
}
module "searxng" {
source = "${local.module_dir}/20-services-apps/searxng"
volume_path = "${local.volume_host}/searxng"
networks = [module.homelab_docker_network.name]
}

View File

@@ -10,7 +10,8 @@ output "service_definitions" {
module.ntfy.service_definition,
module.pterodactyl_wings.service_definition,
module.pterodactyl_panel.service_definition,
module.n8n.service_definition
module.n8n.service_definition,
module.searxng.service_definition
]
}