Remove commas at the end of "containerPort"

"containerPort": 8000, should be "containerPort": 8000
pull/887/head
Jared 2016-07-20 15:32:50 -07:00 committed by GitHub
parent 327d1d3cc0
commit 55d549283f
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
"image": "redis",
"ports": [
{
"containerPort": 6379,
"containerPort": 6379
}
]
},
@ -23,7 +23,7 @@
"image": "django",
"ports": [
{
"containerPort": 8000,
"containerPort": 8000
}
]
}