engine: resources: Fix backwards docker ports

This wasn't setup properly, now it's fixed. Woops.
This commit is contained in:
James Shubin
2025-03-12 03:16:08 -04:00
parent 37308b950b
commit 3ca1aa9cb1
4 changed files with 25 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ docker:container "mgmt-nginx" {
state => "running",
image => "nginx",
cmd => ["nginx", "-g", "daemon off;",],
ports => {"tcp" => {80 => 8080,},},
ports => {"tcp" => {8080 => 80,},},
}
docker:image "nginx" {

View File

@@ -2,5 +2,5 @@ docker:container "mgmt-nginx" {
state => "running",
image => "nginx",
cmd => ["nginx", "-g", "daemon off;",],
ports => {"tcp" => {80 => 8080,},},
ports => {"tcp" => {8080 => 80,},},
}