As per http://blog.docker.com/2015/03/updates-available-to-popular-repos-update-your-images/ docker has stopped answering dockerfile/redis and dockerfile/nginx. Fix all users in our tree. Sadly this means a lot of published examples are now broken.
25 lines
491 B
JSON
25 lines
491 B
JSON
{
|
|
"kind": "ReplicationController",
|
|
"apiVersion": "v1beta3",
|
|
"metadata": {
|
|
"name": "nginx-controller",
|
|
"labels": {"name": "nginx"}
|
|
},
|
|
"spec": {
|
|
"replicas": 2,
|
|
"selector": {"name": "nginx"},
|
|
"template": {
|
|
"metadata": {
|
|
"labels": {"name": "nginx"}
|
|
},
|
|
"spec": {
|
|
"containers": [{
|
|
"name": "nginx",
|
|
"image": "nginx",
|
|
"ports": [{"containerPort": 80}]
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
}
|