remove pm2 and watchify

This commit is contained in:
bmamihai 2022-12-14 00:48:14 +02:00
parent 5b9bfeaa01
commit b2f9f5affa
1 changed files with 1 additions and 3 deletions

View File

@ -7,8 +7,6 @@ RUN apt-get update && \
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
RUN apt-get install -y nodejs
RUN npm install -g watchify
RUN npm install -g pm2
RUN mkdir -p server/ssl
RUN mkdir -p public/
@ -22,7 +20,7 @@ RUN npm install
EXPOSE 3000/tcp
EXPOSE 2000-2200/udp
CMD pm2 start app.js --name video-server -e /app/mediasoup-error.log -o /app/mediasoup-output.log -l /app/mediasoup.log --log-date-format "YYYY-MM-DD HH:mm:ss" --merge-logs --cwd /app/ -i 1; pm2 status; pm2 logs
CMD node start app.js
#docker build -t linx-video .
# docker run -it -d --restart always -p 3000:3000/tcp -p 2000-2200:2000-2200/udp linx-video