feat: add ntfy

This commit is contained in:
Yuris Cakranegara
2025-06-07 16:31:27 +10:00
parent f2ba33fc73
commit e91d1730f6
3 changed files with 65 additions and 1 deletions

View File

@@ -28,3 +28,10 @@ module "emulatorjs" {
source = "${local.module_dir}/20-services-apps/emulatorjs"
volume_path = "${local.volume_host}/emulatorjs"
}
module "ntfy" {
source = "${local.module_dir}/20-services-apps/ntfy"
volume_path = "${local.volume_host}/ntfy"
networks = [module.homelab_docker_network.name]
}

View File

@@ -5,7 +5,8 @@ output "service_definitions" {
description = "Service definitions for all services"
value = [
module.actualbudget.service_definition,
module.emulatorjs.service_definition
module.emulatorjs.service_definition,
module.ntfy.service_definition
]
}