switch torrent to rutorrent
This commit is contained in:
parent
e8cb8cd5d1
commit
4266840d66
@ -57,7 +57,7 @@ job "torrent" {
|
||||
}
|
||||
|
||||
resources {
|
||||
memory = 300
|
||||
memory = 450
|
||||
}
|
||||
}
|
||||
|
69
nomad-job/rutorrent.nomad
Normal file
69
nomad-job/rutorrent.nomad
Normal file
@ -0,0 +1,69 @@
|
||||
|
||||
job "torrent" {
|
||||
datacenters = ["hetzner"]
|
||||
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 = "docker"
|
||||
service {
|
||||
name = "bittorent"
|
||||
port = "http"
|
||||
tags = [
|
||||
"homer.enable=true",
|
||||
"homer.name=torrent",
|
||||
"homer.url=https://torrent.ducamps.win",
|
||||
"homer.service=Application",
|
||||
"homer.logo=https://cdn.icon-icons.com/icons2/2429/PNG/512/bittorrent_logo_icon_147310.png",
|
||||
"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",
|
||||
|
||||
|
||||
]
|
||||
}
|
||||
config {
|
||||
image = "crazymax/rtorrent-rutorrent"
|
||||
ports = [
|
||||
"http",
|
||||
"torrent",
|
||||
"ecoute"
|
||||
]
|
||||
volumes = [
|
||||
"/mnt/hetzner/rutorrentConfig:/data",
|
||||
"/mnt/hetzner/storagebox/file:/downloads"
|
||||
]
|
||||
|
||||
}
|
||||
env {
|
||||
PUID=1024
|
||||
PGID=984
|
||||
UMASK=002
|
||||
WEBUI_PORT="8070"
|
||||
}
|
||||
|
||||
resources {
|
||||
memory = 450
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user