mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2024-11-10 13:44:16 +00:00
fix(synapse): allow specifying env vars for the docker container
This commit is contained in:
parent
2c3b455172
commit
cd65919a63
2 changed files with 2 additions and 0 deletions
|
@ -18,6 +18,7 @@ matrix_synapse_docker_networks: []
|
|||
matrix_synapse_docker_etc_hosts: {}
|
||||
matrix_synapse_docker_ports: ["8008:8008", "8448:8448"]
|
||||
matrix_synapse_docker_labels: {}
|
||||
matrix_synapse_docker_env: {}
|
||||
matrix_synapse_docker_recreate: false
|
||||
matrix_synapse_docker_pull: true
|
||||
matrix_synapse_extra_docker_volumes: []
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
etc_hosts: "{{ matrix_synapse_docker_etc_hosts }}"
|
||||
ports: "{{ matrix_synapse_docker_ports }}"
|
||||
labels: "{{ matrix_synapse_docker_labels_complete }}"
|
||||
env: "{{ matrix_synapse_docker_env }}"
|
||||
restart_policy: unless-stopped
|
||||
recreate: "{{ matrix_synapse_docker_recreate }}"
|
||||
pull: "{{ matrix_synapse_docker_pull }}"
|
||||
|
|
Loading…
Reference in a new issue