Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

23 linhas
656 B

  1. ---
  2. - name: Ensure Matrix base path exists
  3. ansible.builtin.file:
  4. path: "{{ item }}"
  5. state: directory
  6. mode: "{{ matrix_base_data_path_mode }}"
  7. owner: "{{ matrix_user_username }}"
  8. group: "{{ matrix_user_groupname }}"
  9. with_items:
  10. - "{{ matrix_base_data_path }}"
  11. - name: Ensure Matrix network is created in Docker
  12. community.docker.docker_network:
  13. name: "{{ matrix_docker_network }}"
  14. driver: bridge
  15. - name: Ensure matrix-remove-all script created
  16. ansible.builtin.template:
  17. src: "{{ role_path }}/templates/usr-local-bin/matrix-remove-all.j2"
  18. dest: "{{ matrix_local_bin_path }}/matrix-remove-all"
  19. mode: 0750