remove obsolete admin_port

This commit is contained in:
Alex 2022-05-04 17:33:43 +02:00
parent 5b861cd652
commit d7164c7d90
Signed by: lx
GPG key ID: 0E496D15096376BE

View file

@ -7,7 +7,6 @@ job "frontend" {
network { network {
port "http_port" { static = 80 } port "http_port" { static = 80 }
port "https_port" { static = 443 } port "https_port" { static = 443 }
port "admin_port" { static = 8082 }
} }
task "server" { task "server" {
@ -17,7 +16,7 @@ job "frontend" {
image = "lxpz/amd64_tricot:37" image = "lxpz/amd64_tricot:37"
network_mode = "host" network_mode = "host"
readonly_rootfs = true readonly_rootfs = true
ports = [ "http_port", "https_port", "admin_port" ] ports = [ "http_port", "https_port" ]
} }
resources { resources {