nebula/rss-bridge.tf

26 lines
436 B
Terraform
Raw Normal View History

module "rss-bridge" {
name = "rss-bridge"
source = "modules/container"
2019-01-17 19:21:36 +00:00
2019-03-26 07:18:43 +00:00
image = "rssbridge/rss-bridge:latest"
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"
},
]
2019-01-17 19:21:36 +00:00
volumes = [{
container_path = "/app/public/whitelist.txt"
host_path = "/mnt/xwing/config/rss-bridge/whitelist.txt"
}]
}