diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-21 17:32:42 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-11-21 17:32:56 +0100 |
commit | 08d70fe60672976416b92fbb927898125166bfe7 (patch) | |
tree | f6201169666c456069f4bc2fa995f9a8ab5742b0 /support/docker/production | |
parent | c5dcdab330b1767c0ce25d788ed51119f74e7e71 (diff) | |
download | PeerTube-08d70fe60672976416b92fbb927898125166bfe7.tar.gz PeerTube-08d70fe60672976416b92fbb927898125166bfe7.tar.zst PeerTube-08d70fe60672976416b92fbb927898125166bfe7.zip |
export rtmp port in dockerfiles
follows #3341
Diffstat (limited to 'support/docker/production')
-rw-r--r-- | support/docker/production/Dockerfile.buster | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/support/docker/production/Dockerfile.buster b/support/docker/production/Dockerfile.buster index 5af8aa29a..457936090 100644 --- a/support/docker/production/Dockerfile.buster +++ b/support/docker/production/Dockerfile.buster | |||
@@ -41,6 +41,8 @@ VOLUME /config | |||
41 | COPY ./support/docker/production/entrypoint.sh /usr/local/bin/entrypoint.sh | 41 | COPY ./support/docker/production/entrypoint.sh /usr/local/bin/entrypoint.sh |
42 | ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] | 42 | ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] |
43 | 43 | ||
44 | # Expose API and RTMP | ||
45 | EXPOSE 9000 1935 | ||
46 | |||
44 | # Run the application | 47 | # Run the application |
45 | CMD ["npm", "start"] | 48 | CMD ["npm", "start"] |
46 | EXPOSE 9000 | ||