19 lines
373 B
YAML
19 lines
373 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
tasks:
|
|
- name: Nginx
|
|
include_role:
|
|
name: service
|
|
vars:
|
|
docker_service: nginx
|
|
docker_image: nginx
|
|
docker_image_http_port: 80
|
|
admin_email: test@example.com
|
|
ports:
|
|
nginx:
|
|
http: 28001
|
|
docker_vhost_domains:
|
|
nginx:
|
|
- localhost
|