align romm shim with jellyfin/navidrome uid pattern (romm_uid/romm_gid)

This commit is contained in:
2026-07-16 23:56:51 -04:00
parent 81d5db5ddb
commit dd5901a2f0
3 changed files with 19 additions and 5 deletions
+8
View File
@@ -11,6 +11,14 @@ romm_restart_policy: "{{ app_restart_policy | default('unless-stopped') }}"
# Network configuration
romm_http_port: 8080
# User the romm container runs as. Defaults to app_uid/app_gid (the ansible
# connection user, or root under become). Override in your playbook to
# align with host user perms on bind-mounted paths (e.g. NFS). Applies to
# the romm service only; mariadb manages its own user internally. Also used
# as the owner of the app-managed subdirectories.
romm_uid: "{{ app_uid }}"
romm_gid: "{{ app_gid }}"
# Volume paths
romm_library_path: "{{ app_dir }}/library"
romm_assets_path: "{{ app_dir }}/assets"