blob: aa7f92230a2a1bac0859bfb5cf82d3502cf6640d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: Deploy nginx-proxy
ansible.builtin.import_tasks: manage-docker-compose-service.yml
vars:
service_name: nginx-proxy
template_render_dir: "../templates"
service_destination_dir: "{{ nginx_proxy_base }}"
state: restarted
# can't rollout the nginx-proxy without a parent reverse proxy. which
# would need a reverse proxy to rollout. which would need a... yeah you
# get the idea.
# rollout_services:
|