mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-21 23:16:59 +00:00
make talk container read-only
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
6747613a34
commit
ab5449f835
4 changed files with 17 additions and 10 deletions
|
|
@ -44,12 +44,11 @@ RUN set -ex; \
|
|||
echo "root:$(openssl rand -base64 12)" | chpasswd; \
|
||||
\
|
||||
touch \
|
||||
/etc/nats.conf \
|
||||
/etc/signaling.conf \
|
||||
/etc/turnserver.conf; \
|
||||
/etc/nats.conf; \
|
||||
echo "listen: 127.0.0.1:4222" | tee /etc/nats.conf; \
|
||||
mkdir -p \
|
||||
/var/tmp \
|
||||
/conf \
|
||||
/var/lib/turn \
|
||||
/var/log/supervisord \
|
||||
/var/run/supervisord; \
|
||||
|
|
@ -57,11 +56,13 @@ RUN set -ex; \
|
|||
/usr \
|
||||
/etc/janus \
|
||||
/etc/nats.conf \
|
||||
/etc/signaling.conf \
|
||||
/etc/turnserver.conf \
|
||||
/var/lib/turn \
|
||||
/var/log/supervisord \
|
||||
/var/run/supervisord;
|
||||
/var/run/supervisord; \
|
||||
chmod 777 -R \
|
||||
/conf \
|
||||
/var/run/supervisord \
|
||||
/var/log/supervisord;
|
||||
|
||||
# Set default talk port https://github.com/nextcloud/all-in-one/issues/1011
|
||||
ENV TALK_PORT=3478
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue