diff --git a/README.md b/README.md index 43ecb03..e96863f 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Configure backup retention and options in your role's meta vars: ```yaml # In roles/my-app/meta/main.yml dependencies: - - role: docker_compose_app + - role: patrickj.docker_apps.docker_compose_app vars: app_backup_subdirectories: - "{{ my_app_data_path }}" @@ -167,7 +167,7 @@ Configure restore options in your role's meta vars: ```yaml # In roles/my-app/meta/main.yml dependencies: - - role: docker_compose_app + - role: patrickj.docker_apps.docker_compose_app vars: app_restore_source: controller # or 'remote' app_restore_max_age_days: 30 # Only restore backups newer than 30 days @@ -276,7 +276,7 @@ The file will be copied as-is to the application directory without Jinja2 proces #### Use inline content: ```yaml -- role: docker_compose_app +- role: patrickj.docker_apps.docker_compose_app vars: app_name: simple-app app_role_name: simple-app diff --git a/meta/main.yml b/meta/main.yml index bfb2610..2a3f39a 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -4,3 +4,6 @@ galaxy_info: description: Role for deploying Docker Compose apps license: MIT min_ansible_version: "2.14" + +collections: + - community.docker