2019-02-09 10:20:11 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: matrix network
|
|
|
|
docker_network:
|
|
|
|
name: matrix
|
|
|
|
|
|
|
|
- name: matrix database volume
|
|
|
|
docker_volume:
|
|
|
|
name: matrix_db
|
|
|
|
|
2019-02-09 14:43:15 +00:00
|
|
|
- name: riot volume
|
|
|
|
docker_volume:
|
|
|
|
name: riot_app
|
|
|
|
|
|
|
|
- name: upload riot config.json
|
|
|
|
template:
|
2019-02-09 16:00:47 +00:00
|
|
|
src: files/configs/riot-config.json
|
|
|
|
dest: /var/lib/docker/volumes/riot_app/_data/config.json
|
2019-02-09 14:43:15 +00:00
|
|
|
|
|
|
|
- name: upload riot.im.conf
|
|
|
|
template:
|
2019-02-09 16:00:47 +00:00
|
|
|
src: files/configs/riot.im.conf
|
|
|
|
dest: /var/lib/docker/volumes/riot_app/_data/riot.im.conf
|
2019-02-09 14:43:15 +00:00
|
|
|
|
2019-02-09 10:20:11 +00:00
|
|
|
- name: matrix database container
|
|
|
|
docker_container:
|
|
|
|
name: matrix_db
|
|
|
|
image: postgres:10
|
|
|
|
state: started
|
|
|
|
restart_policy: always
|
|
|
|
networks:
|
2019-02-09 14:43:15 +00:00
|
|
|
- name: matrix
|
2019-02-09 10:20:11 +00:00
|
|
|
volumes:
|
|
|
|
- matrix_db:/var/lib/postgresql/data
|
|
|
|
env:
|
2019-02-09 17:49:03 +00:00
|
|
|
POSTGRES_USER: "synapse"
|
2019-02-09 10:20:11 +00:00
|
|
|
POSTGRES_PASSWORD: "{{ postgres_passwords.matrix }}"
|
2019-02-09 14:43:15 +00:00
|
|
|
|
2019-02-09 17:49:03 +00:00
|
|
|
- name: matrix container
|
|
|
|
docker_container:
|
|
|
|
name: matrix
|
|
|
|
image: matrixdotorg/synapse:latest
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
networks:
|
|
|
|
- name: matrix
|
2019-02-09 21:46:32 +00:00
|
|
|
published_ports:
|
2019-02-13 08:49:22 +00:00
|
|
|
- 8008:8008
|
2019-02-09 21:46:32 +00:00
|
|
|
- 8448:8448
|
2019-02-09 17:49:03 +00:00
|
|
|
env:
|
2019-02-13 08:49:22 +00:00
|
|
|
SYNAPSE_SERVER_NAME: "{{ base_domain }}"
|
2019-02-09 17:49:03 +00:00
|
|
|
SYNAPSE_REPORT_STATS: "False"
|
|
|
|
SYNAPSE_ENABLE_REGISTRATION: "True"
|
|
|
|
SYNAPSE_LOG_LEVEL: "INFO"
|
|
|
|
SYNAPSE_NO_TLS: "1"
|
|
|
|
POSTGRES_HOST: "matrix_db"
|
|
|
|
POSTGRES_USER: "synapse"
|
|
|
|
POSTGRES_PASSWORD: "{{ postgres_passwords.matrix }}"
|
|
|
|
VIRTUAL_HOST: "{{ matrix.domain }}"
|
|
|
|
VIRTUAL_PORT: "8008"
|
|
|
|
LETSENCRYPT_HOST: "{{ matrix.domain }}"
|
|
|
|
LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}"
|
|
|
|
|
2019-02-09 14:43:15 +00:00
|
|
|
- name: riot container
|
|
|
|
docker_container:
|
|
|
|
name: riot_app
|
|
|
|
image: avhost/docker-matrix-riot
|
|
|
|
state: started
|
|
|
|
restart_policy: always
|
|
|
|
networks:
|
|
|
|
- name: matrix
|
|
|
|
- name: external_services
|
2019-02-09 16:00:47 +00:00
|
|
|
volumes:
|
|
|
|
- riot_app:/data
|
2019-02-09 17:49:03 +00:00
|
|
|
published_ports:
|
|
|
|
- 8080
|
2019-02-09 15:00:04 +00:00
|
|
|
env:
|
|
|
|
VIRTUAL_HOST: "{{ riot.domain }}"
|
2019-02-09 17:49:03 +00:00
|
|
|
VIRTUAL_PORT: "8080"
|
2019-02-09 15:00:04 +00:00
|
|
|
LETSENCRYPT_HOST: "{{ riot.domain }}"
|
|
|
|
LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}"
|
2019-02-09 21:46:32 +00:00
|
|
|
|