https://github.com/doofy/mxisd-docker
Dockerfile for Matrix Identity Server Daemon mxisd https://github.com/kamax-io/mxisd
https://github.com/doofy/mxisd-docker
docker dockerfile identity matrix mxisd server synapse
Last synced: about 1 month ago
JSON representation
Dockerfile for Matrix Identity Server Daemon mxisd https://github.com/kamax-io/mxisd
- Host: GitHub
- URL: https://github.com/doofy/mxisd-docker
- Owner: doofy
- Created: 2017-04-26T11:44:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-05T16:34:22.000Z (almost 9 years ago)
- Last Synced: 2025-11-12T10:04:22.588Z (9 months ago)
- Topics: docker, dockerfile, identity, matrix, mxisd, server, synapse
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Official docker image
The author released an improved docker image here:
https://github.com/kamax-io/mxisd/blob/master/Dockerfile
https://hub.docker.com/r/kamax/mxisd/
# My outdated docker image
This Dockerfile builds an small docker image for the
Matrix Identity Server Daemon mxisd https://github.com/kamax-io/mxisd.
The config dir of mxisd (/etc/mxis) gets mounted into the host filesystem (/data/mxisd).
There you have to put the config or mxisd will not run.
## Running a mxisd container using the Dockerfile
### Build the docker image from Dockerfile
docker build -t doofy/mxisd .
### Gather example config
https://raw.githubusercontent.com/kamax-io/mxisd/master/application.example.yaml
### Edit the example config to your liking
cp application.example.yaml application.yaml
### Place example config to mounted dir
mv application.yaml /data/mxisd/mxisd.yaml
### Use the image to create container
docker run -v /data/mxisd:/etc/mxis -p 8090:8090 --name mxisd doofy/mxisd