nebula/rss-bridge.tf

23 lines
441 B
Terraform
Raw Normal View History

module "rss-bridge" {
name = "rss-bridge"
source = "modules/container"
2019-01-17 19:21:36 +00:00
image = "captn3m0/rss-bridge:sec-filings"
web {
expose = true
host = "rss-bridge.${var.root-domain}"
}
2019-01-17 19:21:36 +00:00
networks = ["${data.docker_network.bridge.id}"]
2019-01-17 19:21:36 +00:00
volumes = [{
container_path = "/app/public/whitelist.txt"
host_path = "/mnt/xwing/config/rss-bridge/whitelist.txt"
}]
}
2018-11-01 17:00:35 +00:00
2019-01-17 19:21:36 +00:00
data "docker_network" "bridge" {
name = "bridge"
}