mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-24 08:26:55 +00:00
add talk-recording container (#2645)
Signed-off-by: Zoey <zoey@z0ey.de> Co-authored-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
d318c6e53a
commit
216f8a1272
7 changed files with 266 additions and 2 deletions
|
|
@ -63,7 +63,7 @@ ENV TALK_PORT=3478
|
|||
|
||||
USER talk
|
||||
ENTRYPOINT ["start.sh"]
|
||||
CMD ["/usr/bin/supervisord", "-c", "/supervisord.conf"]
|
||||
CMD ["supervisord", "-c", "/supervisord.conf"]
|
||||
|
||||
HEALTHCHECK CMD (nc -z localhost 8081 && nc -z localhost 8188 && nc -z localhost 4222 && nc -z localhost "$TALK_PORT" && nc -z "$NC_DOMAIN" "$TALK_PORT") || exit 1
|
||||
LABEL com.centurylinklabs.watchtower.monitor-only="true"
|
||||
|
|
|
|||
|
|
@ -10,6 +10,9 @@ elif [ -z "$TURN_SECRET" ]; then
|
|||
elif [ -z "$SIGNALING_SECRET" ]; then
|
||||
echo "You need to provide the SIGNALING_SECRET."
|
||||
exit 1
|
||||
elif [ -z "$INTERNAL_SECRET" ]; then
|
||||
echo "You need to provide the INTERNAL_SECRET."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -x
|
||||
|
|
@ -63,7 +66,7 @@ hashkey = $(openssl rand -hex 16)
|
|||
blockkey = $(openssl rand -hex 16)
|
||||
|
||||
[clients]
|
||||
internalsecret = $(openssl rand -hex 16)
|
||||
internalsecret = ${INTERNAL_SECRET}
|
||||
|
||||
[backend]
|
||||
backends = backend-1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue