Merge pull request #1035 from Zoey2936/patch-1

Set default talk port inside Dockerfile
This commit is contained in:
Simon L 2022-08-22 12:21:59 +02:00 committed by GitHub
commit 9a83c3af47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,6 +61,9 @@ RUN mkdir -p /etc/nats; \
# Give root a random password
RUN echo "root:$(openssl rand -base64 12)" | chpasswd
# Set default talk port https://github.com/nextcloud/all-in-one/issues/1011
ENV TALK_PORT=3478
USER talk
ENTRYPOINT ["start.sh"]
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]