From 9df73975538c00dd6c6b0d6bfba501957ef00bb3 Mon Sep 17 00:00:00 2001 From: Jonathon Reinhart Date: Tue, 22 Sep 2015 14:51:19 +0000 Subject: Update allowed_images fully-open example When using private Docker registries (e.g. docker-reg.example.com/name/image), you need to include `"*/*/*"` in `allowed_images`. --- doc/docker/using_docker_images.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/docker/using_docker_images.md b/doc/docker/using_docker_images.md index ef449cd..dd3b5dd 100644 --- a/doc/docker/using_docker_images.md +++ b/doc/docker/using_docker_images.md @@ -154,7 +154,7 @@ If you are courageous enough, you can make it fully open and accept everything: ``` [runners.docker] image = "ruby:2.1" - allowed_images = ["*", "*/*"] + allowed_images = ["*", "*/*", "*/*/*"] allowed_services = ["*", "*/*"] ``` @@ -200,4 +200,4 @@ The build_script is piped using STDIN to bash interpreter which executes the bui docker rm -f -v build service-mysql service-postgres ``` This will forcefully (the `-f` switch) remove build container and service containers -and all volumes (the `-v` switch) that were created with the container creation. +and all volumes (the `-v` switch) that were created with the container creation. \ No newline at end of file -- cgit v1.2.1