Fix not creating the appropriate docker network ahead of time

This commit is contained in:
Salt 2022-05-10 06:48:06 -05:00
parent 2944fc79b7
commit 243e1b079f

View File

@ -9,6 +9,10 @@
state: started
restart_policy: unless-stopped
pull: yes
pre_tasks:
- name: ensure docker network
docker_network: name=web
tags: [ docker ]
tasks:
- name: include tasks for applications
include_tasks: tasks/{{ item }}