71 lines
1.4 KiB
YAML
71 lines
1.4 KiB
YAML
driver:
|
|
name: dokken
|
|
privileged: true # because Docker and SystemD/Upstart
|
|
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
|
|
|
|
transport:
|
|
name: dokken
|
|
|
|
provisioner:
|
|
name: dokken
|
|
deprecations_as_errors: true
|
|
|
|
verifier:
|
|
name: inspec
|
|
|
|
platforms:
|
|
- name: amazonlinux
|
|
driver:
|
|
image: dokken/amazonlinux
|
|
pid_one_command: /sbin/init
|
|
|
|
- name: debian-8
|
|
driver:
|
|
image: dokken/debian-8
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: debian-9
|
|
driver:
|
|
image: dokken/debian-9
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: centos-6
|
|
driver:
|
|
image: dokken/centos-6
|
|
platform: rhel
|
|
pid_one_command: /sbin/init
|
|
|
|
- name: centos-7
|
|
driver:
|
|
image: dokken/centos-7
|
|
platform: rhel
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: fedora-latest
|
|
driver:
|
|
image: dokken/fedora-latest
|
|
pid_one_command: /usr/lib/systemd/systemd
|
|
|
|
- name: ubuntu-14.04
|
|
driver:
|
|
image: dokken/ubuntu-14.04
|
|
pid_one_command: /sbin/init
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: ubuntu-16.04
|
|
driver:
|
|
image: dokken/ubuntu-16.04
|
|
pid_one_command: /bin/systemd
|
|
intermediate_instructions:
|
|
- RUN /usr/bin/apt-get update
|
|
|
|
- name: opensuse-leap
|
|
driver:
|
|
image: dokken/opensuse-leap
|
|
pid_one_command: /bin/systemd
|