Initial matrix/riot stuff.

This commit is contained in:
Víðir Valberg Guðmundsson 2019-02-09 11:20:11 +01:00 committed by Jesper Hess Nielsen
parent 05f5628de2
commit f97eb0e8ed
Signed by untrusted user: graffen
GPG Key ID: 351A89E40D763F0F
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
---
- name: matrix network
docker_network:
name: matrix
- name: matrix database volume
docker_volume:
name: matrix_db
- name: matrix container
docker_container:
name: matrix
image: matrixdotorg/synapse:latest
env:
SYNAPSE_SERVER_NAME: my.matrix.host
SYNAPSE_REPORT_STATS: no
SYNAPSE_ENABLE_REGISTRATION: yes
SYNAPSE_LOG_LEVEL: INFO
POSTGRES_PASSWORD: "{{ postgres_passwords.matrix }}"
- name: matrix database container
docker_container:
name: matrix_db
image: postgres:10
state: started
restart_policy: always
networks:
- name: nextcloud
volumes:
- matrix_db:/var/lib/postgresql/data
env:
POSTGRES_DB: somethingelse
POSTGRES_USER: matrix
POSTGRES_PASSWORD: "{{ postgres_passwords.matrix }}"