Adds elibsrv Docker Container
Diff
elibsrv.tf | 40 ++++++++++++++++++++++++++++++++++++++++
docker/data.tf | 2 --
2 files changed, 40 insertions(+), 2 deletions(-)
@@ -1,0 +1,40 @@
module "elibsrv" {
name = "elibsrv"
source = "./modules/container"
image = "captn3m0/elibsrv:latest"
web {
expose = true
host = "ebooks.${var.root-domain}"
auth = true
}
volumes = [
{
host_path = "/mnt/xwing/media/EBooks"
container_path = "/books"
},
{
host_path = "/mnt/xwing/config/elibsrv"
container_path = "/config"
},
{
host_path = "/mnt/xwing/cache/elibsrv"
container_path = "/cache"
},
]
env = [
"elibsrv_thumbheight=320",
"elibsrv_title=Scarif Media Archives",
]
networks_advanced = [
{
name = "traefik"
},
{
name = "bridge"
},
]
}
@@ -1,6 +1,4 @@
data "docker_registry_image" "traefik" {
name = "traefik:1.7"
}