42 lines
995 B
YAML
42 lines
995 B
YAML
---
|
|
driver:
|
|
name: docker
|
|
lint: |
|
|
set -e
|
|
yamllint .
|
|
ansible-lint --force-color
|
|
platforms:
|
|
- name: alpine-3.8
|
|
image: alpine:3.8
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
- name: alpine-3.9
|
|
image: alpine:3.9
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
- name: alpine-3.10
|
|
image: alpine:3.10
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
- name: alpine-3.11
|
|
image: alpine:3.11
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
provisioner:
|
|
name: ansible
|
|
playbooks:
|
|
converge: ../common/playbooks/template_converge.yml
|
|
verify: ../common/playbooks/template_verify.yml
|