Adds requestrr

This commit is contained in:
Nemo 2021-01-27 13:01:44 +05:30
parent add21ccdac
commit 114bb27349
1 changed files with 25 additions and 0 deletions

25
media/requestrr.tf Normal file
View File

@ -0,0 +1,25 @@
module "requestrr" {
name = "requestrr"
source = "../modules/container"
image = "darkalfx/requestrr:latest"
web {
expose = true
port = 4545
host = "requestrr.${var.domain}"
}
resource {
memory = 256
memory_swap = 256
}
volumes = [
{
host_path = "/mnt/xwing/config/requestrr"
container_path = "/root/config"
}
]
networks = "${list(docker_network.media.id, data.docker_network.bridge.id)}"
}