update
Some checks failed
CI/CD Pipeline / lint (push) Failing after 18s
CI/CD Pipeline / deploy (push) Failing after 56s

This commit is contained in:
sotos
2025-12-17 11:28:21 +01:00
parent a975f69891
commit a339ad8d9c

View File

@@ -1,9 +1,12 @@
---
# Ensure app directory exists
- name: Create app directory
- name: Ensure app directory exists
file:
path: "{{ app_dir }}"
state: directory
owner: root
group: root
mode: '0755'
# Login to private registry
- name: Login to private registry
@@ -28,3 +31,6 @@
ports:
- "8080:80" # host port → container port
pull: yes