32 lines
631 B
YAML
32 lines
631 B
YAML
---
|
|
#playbook to test items on localhost
|
|
|
|
- hosts: localhost
|
|
gather_facts: yes
|
|
become: true
|
|
|
|
vars:
|
|
docker:
|
|
init_config:
|
|
instances:
|
|
- url: "unix://var/run/docker.sock"
|
|
new_tag_names: true
|
|
|
|
dockerhost:
|
|
users:
|
|
- dd-agent
|
|
- richard
|
|
- ansible
|
|
|
|
roles:
|
|
- dockerhost
|
|
# - jenkins
|
|
# - devtools
|
|
# - {
|
|
# role: website,
|
|
# server_hostname: "htmlgames.xai-corp.net",
|
|
# server_root: "/var/www/{{ server_hostname }}",
|
|
# repo: "/home/richard/Documents/Aptana\ Studio\ 3/xai-corp\ workspace/htmlgames/"
|
|
# }
|
|
|