nebula/rss-bridge.tf

19 lines
389 B
HCL

module "rss-bridge" {
name = "rss-bridge"
source = "modules/container"
image = "captn3m0/rss-bridge:sec-filings"
web {
expose = "true"
host = "rss-bridge.${var.root-domain}"
}
networks = ["${data.docker_network.bridge.id}"]
volumes = [{
container_path = "/app/public/whitelist.txt"
host_path = "/mnt/xwing/config/rss-bridge/whitelist.txt"
}]
}