Skip to content
Snippets Groups Projects
Commit a3201660 authored by Christian Elberfeld's avatar Christian Elberfeld
Browse files

Upgrade Matrix to 1.5

parent 21606759
No related branches found
No related tags found
No related merge requests found
FROM matrixdotorg/synapse:v0.99.3-py3 FROM matrixdotorg/synapse:v1.5.0-py3
RUN apk add curl RUN apk add curl
RUN curl https://raw.githubusercontent.com/kamax-matrix/matrix-synapse-rest-auth/master/rest_auth_provider.py -o /usr/local/lib/python3.6/site-packages/rest_auth_provider.py RUN export PYTHON_MINOR_VERSION=$(echo "${PYTHON_VERSION}" | rev | cut -d"." -f2- | rev) ; \
curl https://raw.githubusercontent.com/kamax-matrix/matrix-synapse-rest-auth/master/rest_auth_provider.py -o /usr/local/lib/python${PYTHON_MINOR_VERSION}/site-packages/rest_auth_provider.py
...@@ -4,7 +4,7 @@ services: ...@@ -4,7 +4,7 @@ services:
db: db:
image: postgres image: postgres:10.0
restart: always restart: always
volumes: volumes:
- /srv/matrix/db:/var/lib/postgresql/data - /srv/matrix/db:/var/lib/postgresql/data
...@@ -16,6 +16,7 @@ services: ...@@ -16,6 +16,7 @@ services:
synapse: synapse:
build: . build: .
image: "synapse--{{ ansible_date_time.date }}--{{ ansible_date_time.hour }}-{{ ansible_date_time.minute }}-{{ ansible_date_time.second }}"
restart: always restart: always
depends_on: depends_on:
- db - db
...@@ -30,7 +31,7 @@ services: ...@@ -30,7 +31,7 @@ services:
mxisd: mxisd:
image: kamax/mxisd:1.4.0-alpha.1 image: kamax/mxisd:1.4.6
restart: always restart: always
ports: ports:
- 127.0.0.1:18090:8090 - 127.0.0.1:18090:8090
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment