export rtmp port in dockerfiles

follows #3341
pull/3342/head
Rigel Kent 2020-11-21 17:32:42 +01:00
parent c5dcdab330
commit 08d70fe606
No known key found for this signature in database
GPG Key ID: 5E53E96A494E452F
3 changed files with 7 additions and 4 deletions

View File

@ -39,8 +39,8 @@ RUN yarn install --pure-lockfile \
# Expose PeerTube sources as a volume
VOLUME /home/user/PeerTube
# Expose API and frontend
EXPOSE 3000 9000
# Expose frontend, API and RTMP
EXPOSE 3000 9000 1935
# Start PostgreSQL and Redis
CMD ["service postgresql start && redis-server"]

View File

@ -29,4 +29,5 @@ RUN sudo service postgresql start \
COPY --chown=user:user supervisord.conf /tmp/supervisord-extra.conf
RUN cat /tmp/supervisord-extra.conf | sudo tee -a /etc/supervisord.conf
EXPOSE 3000 9000
# Expose frontend, API and RTMP
EXPOSE 3000 9000 1935

View File

@ -41,6 +41,8 @@ VOLUME /config
COPY ./support/docker/production/entrypoint.sh /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
# Expose API and RTMP
EXPOSE 9000 1935
# Run the application
CMD ["npm", "start"]
EXPOSE 9000