Fix Element self-building by switching to docker-buildx
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2318
This commit is contained in:
parent
6414599079
commit
b2a40effaf
|
@ -50,16 +50,13 @@
|
||||||
when: "matrix_client_element_container_image_self_build | bool and matrix_client_element_container_image_self_build_low_memory_system_patch_enabled | bool"
|
when: "matrix_client_element_container_image_self_build | bool and matrix_client_element_container_image_self_build_low_memory_system_patch_enabled | bool"
|
||||||
|
|
||||||
- name: Ensure Element Docker image is built
|
- name: Ensure Element Docker image is built
|
||||||
community.docker.docker_image:
|
ansible.builtin.command:
|
||||||
name: "{{ matrix_client_element_docker_image }}"
|
cmd: |-
|
||||||
source: build
|
{{ devture_systemd_docker_base_host_command_docker }} buildx build
|
||||||
force_source: "{{ matrix_client_element_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
--tag={{ matrix_client_element_docker_image }}
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_client_element_git_pull_results.changed }}"
|
--file={{ matrix_client_element_docker_src_files_path }}/Dockerfile
|
||||||
build:
|
{{ matrix_client_element_docker_src_files_path }}
|
||||||
dockerfile: Dockerfile
|
when: matrix_client_element_container_image_self_build | bool
|
||||||
path: "{{ matrix_client_element_docker_src_files_path }}"
|
|
||||||
pull: true
|
|
||||||
when: "matrix_client_element_container_image_self_build | bool"
|
|
||||||
|
|
||||||
- name: Ensure Element configuration installed
|
- name: Ensure Element configuration installed
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
|
|
Loading…
Reference in a new issue