aboutsummaryrefslogtreecommitdiff
path: root/app/deployment/web_static.hcl
diff options
context:
space:
mode:
Diffstat (limited to 'app/deployment/web_static.hcl')
-rw-r--r--app/deployment/web_static.hcl30
1 files changed, 14 insertions, 16 deletions
diff --git a/app/deployment/web_static.hcl b/app/deployment/web_static.hcl
index c935b2a..51de395 100644
--- a/app/deployment/web_static.hcl
+++ b/app/deployment/web_static.hcl
@@ -8,13 +8,15 @@ job "web_static" {
}
group "landing" {
+ network {
+ port "deuxfleurs_port" { to = 8080 }
+ }
+
task "server" {
driver = "docker"
config {
image = "superboum/amd64_webpull_pug:v4"
- port_map {
- web_port = 8080
- }
+ ports = [ "deuxfleurs_port" ]
}
template {
@@ -28,9 +30,6 @@ EOH
resources {
memory = 200
- network {
- port "web_port" {}
- }
}
service {
@@ -41,12 +40,12 @@ EOH
"traefik.frontend.rule=Host:deuxfleurs.fr,www.deuxfleurs.fr,deuxfleurs.org,www.deuxfleurs.org;PathPrefix:/",
"traefik.frontend.priority=10"
]
- port = "web_port"
+ port = "deuxfleurs_port"
address_mode = "host"
name = "landing"
check {
type = "tcp"
- port = "web_port"
+ port = "deuxfleurs_port"
interval = "60s"
timeout = "5s"
check_restart {
@@ -60,13 +59,15 @@ EOH
}
group "quentin" {
+ network {
+ port "quentin_port" { to = 8080 }
+ }
+
task "server" {
driver = "docker"
config {
image = "superboum/amd64_webpull_ruby:v1"
- port_map {
- web_port = 8080
- }
+ ports = [ "quentin_port" ]
}
template {
@@ -80,9 +81,6 @@ EOH
resources {
memory = 500
- network {
- port "web_port" {}
- }
}
service {
@@ -92,12 +90,12 @@ EOH
"traefik.frontend.entryPoints=https",
"traefik.frontend.rule=Host:quentin.dufour.io,www.quentin.dufour.io;PathPrefix:/"
]
- port = "web_port"
+ port = "quentin_port"
address_mode = "host"
name = "blog-quentin"
check {
type = "tcp"
- port = "web_port"
+ port = "quentin_port"
interval = "60s"
timeout = "5s"
check_restart {