engine: resources: Fix backwards docker ports
This wasn't setup properly, now it's fixed. Woops.
This commit is contained in:
@@ -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" {
|
||||
|
||||
@@ -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,},},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user