docker-registry: fix missing closing curly brace

Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
Adam Miller 2016-04-07 15:57:06 +00:00
parent 28694e0e40
commit 82938247ad

View file

@ -58,12 +58,13 @@
}, },
filesystem: { filesystem: {
rootdirectory: "/srv/" rootdirectory: "/srv/"
}
}, },
httpd: { httpd: {
addr: "localhost:5000" addr: "localhost:5000"
} },
}
when: env == "staging" when: env == "staging"
}
- { - {
role: docker-distribution, role: docker-distribution,
conf_path: "/etc/docker-distribution/registry/config.yml", conf_path: "/etc/docker-distribution/registry/config.yml",
@ -81,10 +82,11 @@
}, },
filesystem: { filesystem: {
rootdirectory: "/srv/" rootdirectory: "/srv/"
}
}, },
httpd: { httpd: {
addr: "localhost:5000" addr: "localhost:5000"
} },
}
when: env == "production" when: env == "production"
}