Last active
January 2, 2016 13:49
-
-
Save darron/8312375 to your computer and use it in GitHub Desktop.
Working .kitchen.yml file to use Docker with Test Kitchen under dvm.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
driver: | |
name: docker | |
socket: <%= ENV['DOCKER_HOST'] %> | |
provisioner: | |
name: chef_solo | |
platforms: | |
- name: ubuntu-12.04 | |
driver_config: | |
image: darron/ubuntu:12.04 | |
platform: ubuntu | |
- name: ubuntu-13.04 | |
driver_config: | |
image: darron/ubuntu:13.04 | |
platform: ubuntu | |
- name: ubuntu-13.10 | |
driver_config: | |
image: darron/ubuntu:13.10 | |
platform: ubuntu | |
suites: | |
- name: default | |
run_list: | |
- recipe[ubuntu_base::default] | |
attributes: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment