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.
20 lines
290 B
JSON
20 lines
290 B
JSON
{
|
|
"kind": "Pod",
|
|
"apiVersion": "v1beta3",
|
|
"metadata": {
|
|
"name": "name",
|
|
"labels": {
|
|
"name": "redis-master"
|
|
}
|
|
},
|
|
"spec": {
|
|
"containers": [
|
|
{
|
|
"name": "master",
|
|
"image": "redis",
|
|
"args": "this is a bad command"
|
|
}
|
|
]
|
|
}
|
|
}
|