This commit is contained in:
Alex 2021-12-29 22:15:49 +01:00
parent 3d0c3c914d
commit 7c775e6017
No known key found for this signature in database
GPG key ID: 09EC5284AA804D3C
2 changed files with 37 additions and 37 deletions

View file

@ -1,48 +1,48 @@
job "im" {
datacenters = ["neptune"]
type = "service"
group "synapse" {
count = 1
datacenters = ["neptune"]
type = "service"
group "synapse" {
count = 1
constraint {
attribute = "${attr.unique.hostname}"
operator = "="
value = "cariacou"
}
constraint {
attribute = "${attr.unique.hostname}"
operator = "="
value = "cariacou"
}
network {
port "http" {
to = 8008
}
}
network {
port "http" {
to = 8008
}
}
task "synapse" {
driver = "docker"
config {
image = "matrixdotorg/synapse:v1.48.0"
ports = [ "http" ]
task "synapse" {
driver = "docker"
config {
image = "matrixdotorg/synapse:v1.48.0"
ports = [ "http" ]
volumes = [
"/mnt/ssd/synapse:/data",
]
}
}
}
}
service {
port = "http"
tags = [
"tricot matrix.home.adnab.me 100",
"tricot matrix.home.adnab.me:443 100",
"tricot matrix.home.adnab.me:8448 100",
service {
port = "http"
tags = [
"tricot matrix.home.adnab.me 100",
"tricot matrix.home.adnab.me:443 100",
"tricot matrix.home.adnab.me:8448 100",
"tricot-add-header Access-Control-Allow-Origin *",
]
check {
type = "http"
path = "/"
interval = "10s"
timeout = "2s"
}
}
}
]
check {
type = "http"
path = "/"
interval = "10s"
timeout = "2s"
}
}
}
}