Permalink
Please sign in to comment.
Browse files
Let the docker variable be used to specify which subdirs to look in
If you don't specify the subdir, all top level dirs are automatically scanned. Alternatively, following the example, you can specify exactly which Dockerfiles you want to have build.
- Loading branch information...
Showing
with
42 additions
and 1 deletion.
- +33 −0 examples/docker-subdirs.yaml
- +9 −1 vagrant/Vagrantfile
| @@ -0,0 +1,33 @@ | ||
| +--- | ||
| +:domain: example.com | ||
| +:network: 192.168.123.0/24 | ||
| +:image: centos-7.1-docker | ||
| +:boxurlprefix: '' | ||
| +:sync: rsync | ||
| +:folder: '' | ||
| +:extern: | ||
| +- type: git | ||
| + system: docker | ||
| + repository: https://github.com/fedora-cloud/Fedora-Dockerfiles | ||
| + directory: Fedora-Dockerfiles | ||
| +:puppet: false | ||
| +:classes: [] | ||
| +:docker: | ||
| + images: [] | ||
| + files: | ||
| + - Fedora-Dockerfiles/apache | ||
| + - Fedora-Dockerfiles/wordpress | ||
| +:kubernetes: false | ||
| +:ansible: [] | ||
| +:playbook: [] | ||
| +:cachier: false | ||
| +:vms: [] | ||
| +:namespace: omv | ||
| +:count: 1 | ||
| +:username: '' | ||
| +:password: '' | ||
| +:poolid: true | ||
| +:repos: [] | ||
| +:update: false | ||
| +:comment: sub folder simple docker file build example | ||
| +:reallyrm: false |
0 comments on commit
8530734