nebula/media/requestrr.tf

27 lines
468 B
Terraform
Raw Normal View History

2021-01-27 07:31:44 +00:00
module "requestrr" {
name = "requestrr"
source = "../modules/container"
image = "darkalfx/requestrr:latest"
web = {
2021-01-27 07:31:44 +00:00
expose = true
port = 4545
host = "requestrr.${var.domain}"
}
resource = {
2021-01-27 07:31:44 +00:00
memory = 256
memory_swap = 256
}
volumes = [
{
host_path = "/mnt/xwing/config/requestrr"
container_path = "/root/config"
},
2021-01-27 07:31:44 +00:00
]
2022-01-08 16:49:38 +00:00
networks = [docker_network.media.id, data.docker_network.bridge.id]
2021-01-27 07:31:44 +00:00
}