feat: add portainer

This commit is contained in:
Yuris Cakranegara
2025-08-06 01:56:00 +10:00
parent ede6c52a40
commit eefe369975
4 changed files with 152 additions and 0 deletions

6
services/main.tf Normal file → Executable file
View File

@@ -77,6 +77,12 @@ module "ntfy" {
networks = [module.homelab_docker_network.name]
}
module "portainer" {
source = "${local.module_dir}/20-services-apps/portainer"
volume_path = "${local.volume_host}/portainer"
networks = [module.homelab_docker_network.name]
}
module "pterodactyl_panel" {
source = "${local.module_dir}/20-services-apps/pterodactyl/panel"
volume_path = "${local.volume_host}/pterodactyl/panel"

1
services/outputs.tf Normal file → Executable file
View File

@@ -15,6 +15,7 @@ output "service_definitions" {
module.n8n.n8n_mcp_service_definition,
module.nocodb.service_definition,
module.ntfy.service_definition,
module.portainer.service_definition,
module.pterodactyl_wings.service_definition,
module.pterodactyl_panel.service_definition,
module.searxng.service_definition