nebula/rss-bridge.tf
Nemo 9f04ebe4c4 [rss-bridge] Switch to upstream
Most of my changes are merged: captnemo.in/rss/
So I can switch to tracking upstream instead
2022-12-26 12:48:03 +05:30

27 lines
445 B
HCL

module "rss-bridge" {
name = "rss-bridge"
source = "./modules/container"
image = "ghcr.io/rss-bridge/rss-bridge:latest"
resource = {
memory = 256
memory_swap = 256
}
web = {
expose = "true"
host = "rss-bridge.${var.root-domain}"
}
networks = ["bridge"]
volumes = [
{
container_path = "/app/whitelist.txt"
host_path = "/mnt/xwing/config/rss-bridge/whitelist.txt"
},
]
}