From c817dcd38520e4e7fb25d4a551e854cc11b6a5d6 Mon Sep 17 00:00:00 2001 From: vincent Date: Tue, 24 May 2022 15:51:44 +0200 Subject: [PATCH] add filestash job --- filestash.nomad | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 filestash.nomad diff --git a/filestash.nomad b/filestash.nomad new file mode 100644 index 0000000..d44795a --- /dev/null +++ b/filestash.nomad @@ -0,0 +1,63 @@ + +job "filestash" { + datacenters = ["homelab"] + type = "service" + meta { + forcedeploy = "0" + } + constraint { + attribute = "${attr.cpu.arch}" + value = "amd64" + } + + + group "filestash"{ + network { + mode = "host" + port "http" { + to = 8334 + } + port "onlyoffice"{ + to = 80 + } + } + task "filestash" { + driver = "docker" + service { + name = "filestash" + port = "http" + tags = [ + "homer.enable=true", + "homer.name=FileStash", + "homer.service=Application", + "homer.url=http://file.ducamps.win", + "homer.logo=http://file.ducamps.win/assets/logo/apple-touch-icon.png", + "homer.target=_blank", + "traefik.enable=true", + "traefik.http.routers.${NOMAD_JOB_NAME}.rule=Host(`file.ducamps.win`)", + "traefik.http.routers.${NOMAD_JOB_NAME}.tls.domains[0].sans=file.ducamps.win", + "traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=myresolver", + + + ] + } + config { + image = "machines/filestash" + ports = ["http"] + volumes = [ + "/mnt/diskstation/nomad/filestash:/app/data/state" + ] + + } + env { + APPLICATION_URL= "" + } + + resources { + cpu = 300 + memory = 300 + } + } + + } +}