1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-06-28 21:02:54 +02:00

Initial Docker example

This commit is contained in:
Alexandre Iooss
2020-09-14 17:10:14 +02:00
parent 27d662d055
commit a4e4e3cf4e
2 changed files with 41 additions and 0 deletions

29
doc/docker-compose.yml Normal file
View File

@ -0,0 +1,29 @@
version: '3'
services:
# FIXME: adapt URL in conf
ovenmediaengine:
image: airensoft/ovenmediaengine:0.10.7
ports:
- 10000-10005:10000-10005/udp
volumes:
- ./ovenmediaengine/conf/Server.xml:/opt/ovenmediaengine/bin/origin_conf/Server.xml
# FIXME: relay RTMPS to RTMP, auth RTMP with ghostream and relay HTTPS to ghostream HTTP and ovenmediaengine websocket
rtmp_server:
image: nginx:1.19.2
ports:
- 1935:1935
- 443:443
- 80:80
# ghostream will serve a HTTP server on 8080
ghostream:
build: ../
environment:
- FLASK_CONFIG="production"
- LDAP_URI="ldap://127.0.0.1:389"
- LDAP_USER_DN="cn=Users,dc=example,dc=com"
- SITE_NAME="Ghostream"
- SITE_HOSTNAME="localhost"
- FAVICON="/favicon.ico"