Migration: fix application order
Linting / YAML Lint (push) Has been cancelled
Linting / Ansible Lint (push) Has been cancelled

This commit is contained in:
2026-05-23 15:30:33 +03:00
parent 1b120e3ae6
commit a3e53b21e6
3 changed files with 94 additions and 23 deletions
+9 -2
View File
@@ -52,6 +52,13 @@
- "{{ db_dir }}"
- "{{ report_dir }}"
# Owner/mode проставит caddyproxy при своём (позднем) прогоне.
- name: "Ensure caddy logs directory exists"
ansible.builtin.file:
path: "{{ caddy_logs_dir }}"
state: "directory"
mode: "0755"
- name: "Ensure caddy access log exists before goaccess starts"
ansible.builtin.copy:
content: ""
@@ -77,8 +84,8 @@
group: "{{ app_user }}"
mode: "{{ item.mode }}"
loop:
- {name: "Dockerfile", mode: "0640"}
- {name: "entrypoint.sh", mode: "0750"}
- { name: "Dockerfile", mode: "0640" }
- { name: "entrypoint.sh", mode: "0750" }
- name: "Run application with docker compose"
community.docker.docker_compose_v2: