You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to build the MonaServer like the doku mentions but i get the following error:
I have all prequisites installed, OS is ubuntu as a docker container (newly created)
When add #include in Exceptions.h like the error mentions i get a different error:
I dont know if i do something wrong or if it just doesnt work.
Here is my dockerfile:
FROM ubuntu:latest
# install prerequisites
RUN apt-get update -y \
&& apt-get upgrade -y \
&& apt-get install -y tclsh \
pkg-config \
cmake \
libssl-dev \
build-essential \
git \
g++ \
libssl-dev
# Build & install SRT
RUN git clone https://github.com/Haivision/srt.git \
&& cd srt \
&& ./configure \
&& make \
&& make install
# Build & install luajit
WORKDIR /usr/src
RUN git clone https://github.com/LuaJIT/LuaJIT.git \
&& cd LuaJIT \
&& make \
&& make install
# Build
RUN git clone https://github.com/MonaSolutions/MonaServer2.git \
&& cd MonaServer2 \
&& make ENABLE_SRT=1
# HTTP(S)/WS(S)
EXPOSE 80/tcp
EXPOSE 443/tcp
# RTM(F)P
EXPOSE 1935/tcp
EXPOSE 1935/udp
# STUN
EXPOSE 3478/udp
# SRT
EXPOSE 9191
# CONFIG
WORKDIR /usr/local/bin
COPY ./mona-config/MonaServer.ini ./MonaServer.ini
# Set MonaServer as default executable
ENTRYPOINT ["./MonaServer", "--log=7"]
The text was updated successfully, but these errors were encountered:
I tried to build the MonaServer like the doku mentions but i get the following error:
I have all prequisites installed, OS is ubuntu as a docker container (newly created)
When add #include in Exceptions.h like the error mentions i get a different error:
I dont know if i do something wrong or if it just doesnt work.
Here is my dockerfile:
The text was updated successfully, but these errors were encountered: