🏡 index : github.com/captn3m0/nebula.git

module "requestrr" {
  name   = "requestrr"
  source = "../modules/container"
  image  = "thomst08/requestrr:latest"

  web = {
    expose = true
    port   = 4545
    host   = "requestrr.${var.domain}"
  }

  resource = {
    memory      = 1024
    memory_swap = 1024
  }

  volumes = [
    {
      host_path      = "/mnt/xwing/config/requestrr"
      container_path = "/root/config"
    },
  ]

  networks = [docker_network.media.id, data.docker_network.bridge.id]
}