2019-06-01 14:02:49 +00:00
|
|
|
job "seafile" {
|
|
|
|
datacenters = ["dc1"]
|
|
|
|
type = "service"
|
|
|
|
|
|
|
|
constraint {
|
|
|
|
attribute = "${attr.cpu.arch}"
|
|
|
|
value = "amd64"
|
|
|
|
}
|
|
|
|
|
|
|
|
group "main" {
|
|
|
|
count = 1
|
|
|
|
task "server" {
|
|
|
|
driver = "docker"
|
|
|
|
config {
|
2019-10-26 19:16:24 +00:00
|
|
|
image = "superboum/amd64_seafile:v6"
|
|
|
|
|
|
|
|
## cmd + args are used for running an instance attachable for update
|
|
|
|
# command = "/bin/sleep"
|
|
|
|
# args = ["999999"]
|
|
|
|
|
2019-06-01 14:02:49 +00:00
|
|
|
port_map {
|
|
|
|
seahub_port = 8000
|
|
|
|
seafdav_port = 8084
|
|
|
|
seafhttp_port = 8082
|
|
|
|
}
|
|
|
|
|
2020-07-05 18:36:16 +00:00
|
|
|
mounts = [
|
|
|
|
{
|
|
|
|
type = "bind"
|
|
|
|
source = "/mnt/glusterfs/seafile"
|
|
|
|
target = "/mnt/seafile-data"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-06-01 14:02:49 +00:00
|
|
|
volumes = [
|
|
|
|
"secrets/conf:/srv/webstore/conf",
|
|
|
|
"secrets/ccnet:/srv/webstore/ccnet"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
2020-07-05 21:15:05 +00:00
|
|
|
memory = 512
|
2019-06-01 14:02:49 +00:00
|
|
|
network {
|
|
|
|
port "seahub_port" {}
|
|
|
|
port "seafhttp_port" {}
|
|
|
|
port "seafdav_port" {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
service {
|
|
|
|
tags = [
|
|
|
|
"seafile",
|
|
|
|
"traefik.enable=true",
|
|
|
|
"traefik.frontend.entryPoints=https,http",
|
|
|
|
"traefik.frontend.rule=Host:cloud.deuxfleurs.fr;PathPrefix:/"
|
|
|
|
]
|
|
|
|
port = "seahub_port"
|
|
|
|
address_mode = "host"
|
|
|
|
name = "seahub"
|
|
|
|
check {
|
|
|
|
type = "tcp"
|
|
|
|
port = "seahub_port"
|
|
|
|
interval = "60s"
|
|
|
|
timeout = "5s"
|
|
|
|
check_restart {
|
|
|
|
limit = 3
|
|
|
|
grace = "90s"
|
|
|
|
ignore_warnings = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
service {
|
|
|
|
tags = [
|
|
|
|
"seafile",
|
|
|
|
"traefik.enable=true",
|
|
|
|
"traefik.frontend.entryPoints=https,http",
|
|
|
|
"traefik.frontend.rule=Host:cloud.deuxfleurs.fr;PathPrefixStrip:/seafhttp"
|
|
|
|
|
|
|
|
]
|
|
|
|
port = "seafhttp_port"
|
|
|
|
address_mode = "host"
|
|
|
|
name = "seafhttp"
|
|
|
|
check {
|
|
|
|
type = "tcp"
|
|
|
|
port = "seafhttp_port"
|
|
|
|
interval = "60s"
|
|
|
|
timeout = "5s"
|
|
|
|
check_restart {
|
|
|
|
limit = 3
|
|
|
|
grace = "90s"
|
|
|
|
ignore_warnings = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
service {
|
|
|
|
tags = [
|
|
|
|
"seafile",
|
|
|
|
"traefik.enable=true",
|
|
|
|
"traefik.frontend.entryPoints=https,http",
|
|
|
|
"traefik.frontend.rule=Host:cloud.deuxfleurs.fr;PathPrefix:/seafdav"
|
|
|
|
|
|
|
|
]
|
|
|
|
port = "seafdav_port"
|
|
|
|
address_mode = "host"
|
|
|
|
name = "seafdav"
|
|
|
|
check {
|
|
|
|
type = "tcp"
|
|
|
|
port = "seafdav_port"
|
|
|
|
interval = "60s"
|
|
|
|
timeout = "5s"
|
|
|
|
check_restart {
|
|
|
|
limit = 3
|
|
|
|
grace = "90s"
|
|
|
|
ignore_warnings = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 20:52:57 +00:00
|
|
|
artifact {
|
2020-02-11 21:36:45 +00:00
|
|
|
source = "http://127.0.0.1:8500/v1/kv/configuration/seafile/conf/ccnet.conf.tpl?raw"
|
2020-02-11 20:52:57 +00:00
|
|
|
destination = "secrets/conf/ccnet.conf.tpl"
|
|
|
|
mode = "file"
|
|
|
|
}
|
2020-02-15 15:02:16 +00:00
|
|
|
template {
|
2020-02-11 20:52:57 +00:00
|
|
|
source = "secrets/conf/ccnet.conf.tpl"
|
|
|
|
destination = "secrets/conf/ccnet.conf"
|
|
|
|
}
|
|
|
|
|
2020-02-15 15:02:16 +00:00
|
|
|
artifact {
|
|
|
|
source = "http://127.0.0.1:8500/v1/kv/configuration/seafile/conf/seafile.conf.tpl?raw"
|
|
|
|
destination = "secrets/conf/seafile.conf.tpl"
|
|
|
|
mode = "file"
|
|
|
|
}
|
|
|
|
template {
|
|
|
|
source = "secrets/conf/seafile.conf.tpl"
|
|
|
|
destination = "secrets/conf/seafile.conf"
|
|
|
|
}
|
|
|
|
|
|
|
|
artifact {
|
|
|
|
source = "http://127.0.0.1:8500/v1/kv/configuration/seafile/conf/seahub_settings.py.tpl?raw"
|
|
|
|
destination = "secrets/conf/seahub_settings.py.tpl"
|
|
|
|
mode = "file"
|
|
|
|
}
|
|
|
|
template {
|
|
|
|
source = "secrets/conf/seahub_settings.py.tpl"
|
|
|
|
destination = "secrets/conf/seahub_settings.py"
|
|
|
|
}
|
|
|
|
|
2019-06-01 14:02:49 +00:00
|
|
|
template {
|
|
|
|
data = "{{ key \"configuration/seafile/ccnet/mykey.peer\" }}"
|
|
|
|
destination = "secrets/ccnet/mykey.peer"
|
|
|
|
}
|
|
|
|
template {
|
|
|
|
data = "{{ key \"configuration/seafile/ccnet/seafile.ini\" }}"
|
|
|
|
destination = "secrets/ccnet/seafile.ini"
|
|
|
|
}
|
|
|
|
template {
|
|
|
|
data = "{{ key \"configuration/seafile/conf/mykey.peer\" }}"
|
|
|
|
destination = "secrets/conf/mykey.peer"
|
|
|
|
}
|
|
|
|
template {
|
|
|
|
data = "{{ key \"configuration/seafile/conf/seafdav.conf\" }}"
|
|
|
|
destination = "secrets/conf/seafdav.conf"
|
|
|
|
}
|
|
|
|
template {
|
|
|
|
data = "{{ key \"configuration/seafile/conf/gunicorn.conf\" }}"
|
|
|
|
destination = "secrets/conf/gunicorn.conf"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|