homelab/nomad-job/rutorrent.nomad
2022-12-10 17:10:32 +01:00

76 lines
1.7 KiB
HCL

job "torrent" {
datacenters = ["hetzner"]
priority = 80
type = "service"
meta {
forcedeploy = "0"
}
group "bittorent" {
network {
mode = "host"
port "http" {
to = 8080
host_network = "private"
}
port "torrent" {
static = 6881
host_network = "public"
}
port "ecoute" {
static = 50000
host_network = "public"
}
}
task "bittorent" {
driver = "podman"
service {
name = "bittorent"
port = "http"
address_mode= "host"
tags = [
"homer.enable=true",
"homer.name=torrent",
"homer.url=https://torrent.ducamps.win",
"homer.service=Application",
"homer.logo=https://${NOMAD_JOB_NAME}.ducamps.win/images/favicon-196x196.png",
"homer.target=_blank",
"traefik.enable=true",
"traefik.http.routers.${NOMAD_JOB_NAME}.rule=Host(`${NOMAD_JOB_NAME}.ducamps.win`)",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.domains[0].sans=${NOMAD_JOB_NAME}.ducamps.win",
"traefik.http.routers.${NOMAD_JOB_NAME}.tls.certresolver=myresolver",
]
}
user = "root"
config {
image = "docker.io/crazymax/rtorrent-rutorrent:latest"
privileged = "true"
ports = [
"http",
"torrent",
"ecoute"
]
volumes = [
"/mnt/hetzner/storagebox/rutorrentConfig:/data",
"/mnt/hetzner/storagebox/file:/downloads"
]
}
env {
PUID = 1024
PGID = 984
UMASK = 002
WEBUI_PORT = "8080"
}
resources {
memory = 450
}
}
}
}