nebula/lychee.tf

30 lines
524 B
Terraform
Raw Normal View History

2018-09-15 12:13:44 +00:00
module "lychee" {
source = "modules/container"
name = "lychee"
image = "linuxserver/lychee:latest"
volumes = [{
host_path = "/mnt/xwing/config/lychee"
container_path = "/config"
},
{
host_path = "/mnt/xwing/data/lychee"
container_path = "/pictures"
},
]
files = "/config/lychee/user.ini"
contents = ["${file("${path.module}/docker/conf/lychee.php.ini")}"]
2018-09-15 12:13:44 +00:00
web {
expose = true
host = "pics.bb8.fun"
}
env = [
"PUID=986",
"PGID=984",
]
}