
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
451 B
YAML
20 lines
451 B
YAML
apiVersion: v1beta1
|
|
kind: Pod
|
|
id: storage
|
|
desiredState:
|
|
manifest:
|
|
version: v1beta1
|
|
id: storage
|
|
containers:
|
|
- name: redis
|
|
image: redis
|
|
volumeMounts:
|
|
# name must match the volume name below
|
|
- name: redis-persistent-storage
|
|
# mount path within the container
|
|
mountPath: /data/redis
|
|
volumes:
|
|
- name: redis-persistent-storage
|
|
source:
|
|
emptyDir: {}
|