add openmeetings

This commit is contained in:
kev 2019-06-08 22:11:35 +08:00
parent 57f09a4544
commit ffee17c2e8
2 changed files with 42 additions and 0 deletions

8
openmeetings/README.md Normal file
View File

@ -0,0 +1,8 @@
openmeetings
============
[Openmeetings][1] provides video conferencing, instant messaging, white board,
collaborative document editing and other groupware tools. It uses API functions
of Media Server for Remoting and Streaming (Red5 or Kurento).
[1]: https://openmeetings.apache.org/

View File

@ -0,0 +1,34 @@
version: '3.1'
services:
openmeetings:
image: vimagick/openmeetings
ports:
- "5443:5443"
volumes:
- ./data/omdata:/opt/omdata
environment:
- OM_KURENTO_WS_URL=ws://kurento:8888/kurento
- OM_DB_HOST=mysql
- OM_DB_USER=root
- OM_DB_PASS=root
- OM_DB_NAME=openmeetings
- OM_USER=admin
- OM_PASS=admin
restart: always
kurento:
image: kurento/kurento-media-server
ports:
- "8888:8888"
restart: always
mysql:
image: mysql
volumes:
- ./data/mysql:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=openmeetings
restart: always