--- - name: "Include tasks for API domain" include_tasks: nginx-docker-proxy-domain.yml vars: domain: "{{ domain_api }}" http_port: "{{ http_port_api }}" - name: "Include tasks for Web domain" include_tasks: nginx-docker-proxy-domain.yml vars: domain: "{{ domain_web }}" http_port: "{{ http_port_web }}" - name: clone social app repository git: repo: "https://github.com/bluesky-social/social-app.git" dest: "{{social_app_path}}" version: "main" # Optional: spezifischer Branch oder Tag update: yes # Aktualisiert das Repo, falls es schon existiert notify: docker compose project build and setup - name: add docker-compose.yml template: src: docker-compose.yml.j2 dest: "{{docker_compose_instance_directory}}docker-compose.yml" notify: docker compose project build and setup