homelab/nomad-job/filestash.nomad

64 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-05-24 13:51:44 +00:00
job "filestash" {
2022-09-09 15:19:07 +00:00
datacenters = ["hetzner"]
2022-10-29 08:40:01 +00:00
type = "service"
2022-05-24 13:51:44 +00:00
meta {
forcedeploy = "0"
}
constraint {
attribute = "${attr.cpu.arch}"
2022-10-29 08:40:01 +00:00
value = "amd64"
2022-05-24 13:51:44 +00:00
}
2022-10-29 08:40:01 +00:00
group "filestash" {
2022-05-24 13:51:44 +00:00
network {
mode = "host"
port "http" {
to = 8334
}
2022-10-29 08:40:01 +00:00
port "onlyoffice" {
2022-05-24 13:51:44 +00:00
to = 80
}
}
task "filestash" {
driver = "docker"
service {
name = "filestash"
port = "http"
tags = [
2022-10-29 08:40:01 +00:00
"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",
2022-05-24 13:51:44 +00:00
]
}
config {
image = "machines/filestash"
ports = ["http"]
volumes = [
"/mnt/diskstation/nomad/filestash:/app/data/state"
]
}
env {
2022-10-29 08:40:01 +00:00
APPLICATION_URL = ""
2022-05-24 13:51:44 +00:00
}
resources {
2022-10-29 08:40:01 +00:00
cpu = 100
2022-05-24 13:51:44 +00:00
memory = 300
}
}
}
}