Fix mount_group variable type

This commit is contained in:
uumas
2026-01-24 18:40:06 +02:00
parent 399c6f620b
commit a028907889
2 changed files with 3 additions and 3 deletions

View File

@@ -5,8 +5,8 @@
block:
- name: Define mount directory owner
set_fact:
mount_owner: "{{ user.uid if docker_host_user else image_user }}"
mount_group: "{{ user.group if docker_host_user else '' }}"
mount_owner: "{{ user.uid | string if docker_host_user else image_user }}"
mount_group: "{{ user.group | string if docker_host_user else '' }}"
- name: "Create docker bind mount directories for {{ docker_service_name }}"
file: