26 lines
778 B
YAML
26 lines
778 B
YAML
---
|
|
galaxy_info:
|
|
author: Patrick Jaroszewski
|
|
description: Deploy RomM with Docker Compose
|
|
license: MIT
|
|
|
|
dependencies:
|
|
- role: patrickj.docker_apps.docker_compose_app
|
|
vars:
|
|
app_role_name: romm
|
|
app_subdirectories: >-
|
|
{{
|
|
[romm_library_path, romm_assets_path, romm_config_path,
|
|
romm_resources_path, romm_mysql_data_path]
|
|
+ ([romm_redis_data_path] if romm_redis_data_path else [])
|
|
}}
|
|
app_backup_subdirectories:
|
|
- "{{ romm_assets_path }}"
|
|
- "{{ romm_config_path }}"
|
|
- "{{ romm_resources_path }}"
|
|
- "{{ romm_mysql_data_path }}"
|
|
app_extra_templates:
|
|
- src: "{{ app_templates_path }}/.env.j2"
|
|
dest: "{{ app_dir }}/.env"
|
|
app_compose_validate: false
|