community.docker/tests/integration/targets/inventory_docker_machine/playbooks/setup.yml
Ansible Core Team a1f472244d Initial commit
2020-10-30 07:05:50 +01:00

12 lines
353 B
YAML

---
- hosts: 127.0.0.1
connection: local
tasks:
- name: Request Docker Machine to use this machine as a generic VM
command: "docker-machine --debug create \
--driver generic \
--generic-ip-address=localhost \
--generic-ssh-key {{ lookup('env', 'HOME') }}/.ssh/id_rsa \
--generic-ssh-user root \
vm"