Merge pull request #7 from fauust/change_driver

Add a switch to use podman instead of docker
This commit is contained in:
faust 2020-10-20 17:47:09 +02:00 committed by GitHub
commit 3fed7d5f44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@ services: docker
env: env:
global: global:
- ROLE_NAME: mariadb - ROLE_NAME: mariadb
- DRIVER_NAME: docker
matrix: matrix:
- MOLECULE_DISTRO: debian-10 - MOLECULE_DISTRO: debian-10
- MOLECULE_DISTRO: debian-sid - MOLECULE_DISTRO: debian-sid

View File

@ -2,7 +2,7 @@
dependency: dependency:
name: galaxy name: galaxy
driver: driver:
name: docker name: ${DRIVER_NAME:-podman}
platforms: platforms:
- name: instance - name: instance
image: "fauust/docker-ansible:${MOLECULE_DISTRO:-debian-10}" image: "fauust/docker-ansible:${MOLECULE_DISTRO:-debian-10}"

View File

@ -3,6 +3,6 @@ ansible==2.9.*
docker docker
flake8 flake8
mitogen mitogen
molecule molecule==3.0.*
testinfra testinfra
yamllint yamllint