mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2025-03-04 14:47:18 +00:00
move container ref to variable
This commit is contained in:
parent
e5e3e957b8
commit
b4e2a49391
2 changed files with 2 additions and 1 deletions
|
@ -13,3 +13,4 @@ matrix_synapse_log_days_keep: 30
|
|||
matrix_synapse_pid_file: "{{ matrix_synapse_base_path }}/synapse.pid"
|
||||
matrix_synapse_docker_ports: ["8008:8008", "8448:8448"]
|
||||
matrix_synapse_docker_labels: {}
|
||||
matrix_synapse_container_ref: "docker.io/matrixdotorg/synapse"
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
- name: install synapse with docker
|
||||
docker_container:
|
||||
name: synapse
|
||||
image: "docker.io/matrixdotorg/synapse:{{ matrix_synapse_version }}"
|
||||
image: "{{ matrix_synapse_container_ref }}:{{ matrix_synapse_version }}"
|
||||
ports: "{{ matrix_synapse_docker_ports }}"
|
||||
labels: "{{ matrix_synapse_docker_labels }}"
|
||||
restart_policy: unless-stopped
|
||||
|
|
Loading…
Add table
Reference in a new issue