Skip to content

Commit

Permalink
add Riot
Browse files Browse the repository at this point in the history
We are building it from

* https://github.com/silvio/matrix-riot-docker

with

    docker build --build-arg REBUILD=$(date -I) --build-arg BV_VEC=v0.11.2-rc.2 -t allmende/riot:$(date -I) .
  • Loading branch information
almereyda committed Jun 18, 2017
1 parent 92927bb commit 2a37f02
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,24 @@ services:
networks:
- frontend

riot:
image: allmende/riot:2017-06-19
restart: always
command: start
environment:
VIRTUAL_HOST: riot.allmende.io
VIRTUAL_PORT: 8080
LETSENCRYPT_HOST: riot.allmende.io
LETSENCRYPT_EMAIL: almeryda@allmende.io
expose:
- "8080"
volumes:
- /srv/matrix/allmende:/data
logging:
driver: none
networks:
- frontend

matrix:
image: allmende/synapse:v0.21.1
restart: always
Expand Down

1 comment on commit 2a37f02

@almereyda
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make sure not to have a config.json file in your /data directory, due to https://github.com/allmende/matrix-riot-docker/blob/master/adds/start.sh#L5

Please sign in to comment.