Modify nginx port to avoid collision with api server

This commit is contained in:
Prashanth Balasubramanian
2015-02-10 16:19:16 -08:00
parent c2b0632be4
commit ec298733c7
2 changed files with 7 additions and 4 deletions

View File

@@ -11,7 +11,7 @@
"image": "dockerfile/nginx",
"ports": [{
"containerPort": 80,
"hostPort": 8080
"hostPort": 8081
}],
"livenessProbe": {
"enabled": true,
@@ -19,7 +19,7 @@
"initialDelaySeconds": 30,
"httpGet": {
"path": "/index.html",
"port": "8080"
"port": "8081"
}
}
}]