95fe871e69
And remove support for Alpine 3.8
41 lines
941 B
YAML
41 lines
941 B
YAML
---
|
|
driver:
|
|
name: docker
|
|
lint: |
|
|
set -e
|
|
yamllint .
|
|
ansible-lint --force-color
|
|
platforms:
|
|
- 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"
|
|
- name: alpine-3.12
|
|
image: alpine:3.12
|
|
dockerfile: ../common/Dockerfile.j2
|
|
privileged: true
|
|
volumes:
|
|
- "/sys/fs/cgroup:/sys/fs/cgroup:rw"
|
|
command: "/sbin/init"
|
|
provisioner:
|
|
name: ansible
|
|
playbooks:
|
|
converge: ../common/playbooks/unit_converge.yml
|