diff --git a/roles/docker/tasks/main.yml b/roles/docker/tasks/main.yml index f2b9b40..64c9a2d 100644 --- a/roles/docker/tasks/main.yml +++ b/roles/docker/tasks/main.yml @@ -59,24 +59,24 @@ # Deploy services by category for better organization and dependency management - name: Deploy infrastructure services import_tasks: infrastructure/main.yml - tags: infrastructure + tags: [infrastructure, services] - name: Deploy development services import_tasks: development/main.yml - tags: development + tags: [development, services] - name: Deploy media services import_tasks: media/main.yml - tags: media + tags: [media, services] - name: Deploy productivity services import_tasks: productivity/main.yml - tags: productivity + tags: [productivity, services] - name: Deploy monitoring services import_tasks: monitoring/main.yml - tags: monitoring + tags: [monitoring, services] - name: Deploy communication services import_tasks: communication/main.yml - tags: communication \ No newline at end of file + tags: [communication, services] \ No newline at end of file