9 lines
155 B
YAML
9 lines
155 B
YAML
# vim: ft=yaml.ansible
|
|
---
|
|
- name: "restart nginx"
|
|
community.docker.docker_container:
|
|
name: "nginx-proxy"
|
|
restart: "yes"
|
|
state: "started"
|
|
|