Initial Docker example

This commit is contained in:
Alexandre Iooss 2020-09-14 17:10:14 +02:00
parent 27d662d055
commit a4e4e3cf4e
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
2 changed files with 41 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM debian:buster
RUN apt-get update && \
apt-get install --no-install-recommends -y \
python3-flask python3-ldap uwsgi uwsgi-plugin-python3 && \
rm -rf /var/lib/apt/lists/*
WORKDIR /code
COPY . /code/
EXPOSE 8080
CMD /usr/bin/uwsgi --http-socket 0.0.0.0:8080 --master --plugin python3 --module ghostream:app --static-map /static=/code/ghostream/static

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"