nebula/rss-bridge.tf

34 lines
513 B
Terraform
Raw Normal View History

module "rss-bridge" {
name = "rss-bridge"
2021-03-20 07:39:19 +00:00
source = "./modules/container"
2019-01-17 19:21:36 +00:00
2020-07-29 17:19:35 +00:00
image = "captn3m0/rss-bridge:develop"
2021-03-20 07:39:19 +00:00
resource = {
2019-05-22 13:22:27 +00:00
memory = 256
memory_swap = 256
}
2021-03-20 07:39:19 +00:00
web = {
2019-01-21 16:11:08 +00:00
expose = "true"
host = "rss-bridge.${var.root-domain}"
}
2019-03-26 07:18:43 +00:00
networks_advanced = [
{
name = "external"
2019-03-26 07:18:43 +00:00
},
{
name = "traefik"
},
]
2021-03-20 07:39:19 +00:00
volumes = [
{
container_path = "/app/whitelist.txt"
host_path = "/mnt/xwing/config/rss-bridge/whitelist.txt"
},
]
2019-01-17 19:21:36 +00:00
}
2021-03-20 07:39:19 +00:00