Merge pull request #7 from fauust/change_driver
Add a switch to use podman instead of docker
This commit is contained in:
commit
3fed7d5f44
|
|
@ -5,6 +5,7 @@ services: docker
|
|||
env:
|
||||
global:
|
||||
- ROLE_NAME: mariadb
|
||||
- DRIVER_NAME: docker
|
||||
matrix:
|
||||
- MOLECULE_DISTRO: debian-10
|
||||
- MOLECULE_DISTRO: debian-sid
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
dependency:
|
||||
name: galaxy
|
||||
driver:
|
||||
name: docker
|
||||
name: ${DRIVER_NAME:-podman}
|
||||
platforms:
|
||||
- name: instance
|
||||
image: "fauust/docker-ansible:${MOLECULE_DISTRO:-debian-10}"
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@ ansible==2.9.*
|
|||
docker
|
||||
flake8
|
||||
mitogen
|
||||
molecule
|
||||
molecule==3.0.*
|
||||
testinfra
|
||||
yamllint
|
||||
|
|
|
|||
Loading…
Reference in New Issue