-
Notifications
You must be signed in to change notification settings - Fork 53
/
Dockerfile
24 lines (19 loc) · 904 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM debian:latest
MAINTAINER Roberto Andrade <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm
RUN apt-get update && \
apt-get install -y wget dnsutils vim telnet && \
echo 'deb http://download.jitsi.org/nightly/deb unstable/' >> /etc/apt/sources.list && \
wget -qO - https://download.jitsi.org/nightly/deb/unstable/archive.key | apt-key add - && \
apt-get update && \
apt-get -y install jitsi-meet && \
apt-get clean
#ENV PUBLIC_HOSTNAME=192.168.59.103
#/etc/jitsi/meet/localhost-config.js = bosh: '//localhost/http-bind',
#RUN sed s/JVB_HOSTNAME=/JVB_HOSTNAME=$PUBLIC_HOSTNAME/ -i /etc/jitsi/videobridge/config && \
# sed s/JICOFO_HOSTNAME=/JICOFO_HOSTNAME=$PUBLIC_HOSTNAME/ -i /etc/jitsi/jicofo/config
EXPOSE 80 443 5347
EXPOSE 10000/udp 10001/udp 10002/udp 10003/udp 10004/udp 10005/udp 10006/udp 10007/udp 10008/udp 10009/udp 10010/udp
COPY run.sh /run.sh
CMD /run.sh