17 lines
274 B
YAML
17 lines
274 B
YAML
|
|
---
|
||
|
|
- name: Deploy httpbin on App3
|
||
|
|
hosts: 192.168.0.112
|
||
|
|
become: yes
|
||
|
|
gather_facts: yes
|
||
|
|
|
||
|
|
pre_tasks:
|
||
|
|
- name: Ensure Docker is installed
|
||
|
|
include_role:
|
||
|
|
name: docker
|
||
|
|
apply:
|
||
|
|
tags: docker
|
||
|
|
|
||
|
|
roles:
|
||
|
|
- role: httpbin
|
||
|
|
tags: httpbin
|