Remove useless admin port in tricot

This commit is contained in:
Alex 2022-01-13 12:16:16 +01:00
parent f96b036283
commit 26a072654e
No known key found for this signature in database
GPG key ID: EDABF9711E244EB1

View file

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