fix ansible-lint errors

This commit is contained in:
Sergey Malyuk
2025-12-18 17:20:17 +03:00
parent 72c812214a
commit 6a77bc6d56
16 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
---
services:
nginx:
image: nginx:{{ nginx_docker_image_tag }}
container_name: nginx
hostname: nginx
restart: unless-stopped
network_mode: host
volumes:
- "{{ nginx_docker_project_path }}/conf.d/:/etc/nginx/conf.d/:ro"
- "/var/log/nginx/:/var/log/nginx/:rw"
{% for v in nginx_docker_custom_volumes %}
- {{ v.from}}:{{v.to}}:{{v.mode | default('rw')}}
{% endfor %}