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/janitor | |
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/janitor')
-rw-r--r-- | support/docker/janitor/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/support/docker/janitor/Dockerfile b/support/docker/janitor/Dockerfile index 2b4f2b215..5e7970d17 100644 --- a/support/docker/janitor/Dockerfile +++ b/support/docker/janitor/Dockerfile | |||
@@ -29,4 +29,5 @@ RUN sudo service postgresql start \ | |||
29 | COPY --chown=user:user supervisord.conf /tmp/supervisord-extra.conf | 29 | COPY --chown=user:user supervisord.conf /tmp/supervisord-extra.conf |
30 | RUN cat /tmp/supervisord-extra.conf | sudo tee -a /etc/supervisord.conf | 30 | RUN cat /tmp/supervisord-extra.conf | sudo tee -a /etc/supervisord.conf |
31 | 31 | ||
32 | EXPOSE 3000 9000 | 32 | # Expose frontend, API and RTMP |
33 | EXPOSE 3000 9000 1935 | ||