nebula/rss-bridge.tf

27 lines
445 B
Terraform
Raw Permalink Normal View History

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