amikon: update to support node docker image (#81)
This commit is contained in:
parent
f3e5ae5e2b
commit
37e6facab6
1 changed files with 23 additions and 13 deletions
|
@ -12,7 +12,7 @@ job "ams-amikon" {
|
|||
|
||||
network {
|
||||
port "http" {
|
||||
to = 80
|
||||
to = 3000
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -20,35 +20,45 @@ job "ams-amikon" {
|
|||
port = "http"
|
||||
|
||||
check {
|
||||
type = "http"
|
||||
path = "/"
|
||||
type = "http"
|
||||
path = "/"
|
||||
interval = "10s"
|
||||
timeout = "2s"
|
||||
timeout = "2s"
|
||||
}
|
||||
tags = [
|
||||
"traefik.enable=true",
|
||||
"traefik.http.routers.ams-amikon.rule=Host(`amikon.me`) || Host(`www.amikon.me`)",
|
||||
"traefik.http.routers.ams-amikon.entrypoints=web,websecure",
|
||||
"traefik.http.routers.ams-amikon.tls.certresolver=lets-encrypt",
|
||||
"traefik.http.routers.ams-amikon.middlewares=www-redirect",
|
||||
"traefik.http.middlewares.www-redirect.redirectregex.regex=^https?://www.amikon.me/(.*)",
|
||||
"traefik.http.middlewares.www-redirect.redirectregex.replacement=https://amikon.me/$${1}",
|
||||
"traefik.http.middlewares.www-redirect.redirectregex.permanent=true",
|
||||
"traefik.http.routers.ams-amikon.middlewares=amikon-www-redirect",
|
||||
"traefik.http.middlewares.amikon-www-redirect.redirectregex.regex=^https?://www.amikon.me/(.*)",
|
||||
"traefik.http.middlewares.amikon-www-redirect.redirectregex.replacement=https://amikon.me/$${1}",
|
||||
"traefik.http.middlewares.amikon-www-redirect.redirectregex.permanent=true",
|
||||
]
|
||||
}
|
||||
|
||||
task "amikon-nginx" {
|
||||
task "amikon-node" {
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "ghcr.io/dcuams/amikon-site-v2:latest"
|
||||
image = "ghcr.io/dcuams/amikon-site-v2:latest"
|
||||
force_pull = true
|
||||
ports = ["http"]
|
||||
ports = ["http"]
|
||||
}
|
||||
|
||||
template {
|
||||
data = <<EOF
|
||||
EMAIL={{ key "ams/amikon/email/user" }}
|
||||
EMAIL_PASS={{ key "ams/amikon/email/password" }}
|
||||
TO_EMAIL={{ key "ams/amikon/email/to" }}
|
||||
EOF
|
||||
destination = ".env"
|
||||
env = true
|
||||
}
|
||||
|
||||
resources {
|
||||
cpu = 100
|
||||
memory = 50
|
||||
cpu = 800
|
||||
memory = 500
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue