Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Update allowed_images fully-open example
Browse files Browse the repository at this point in the history
When using private Docker registries
(e.g. docker-reg.example.com/name/image),
you need to include `"*/*/*"` in `allowed_images`.
  • Loading branch information
JonathonReinhart committed Sep 22, 2015
1 parent 63b36c9 commit 9df7397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/docker/using_docker_images.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ["*", "*/*"]
```

Expand Down Expand Up @@ -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.

0 comments on commit 9df7397

Please sign in to comment.