2023-06-21 20:58:54 +08:00
|
|
|
FROM nats:2.9.19-scratch as nats
|
2023-07-05 20:26:16 +08:00
|
|
|
FROM strukturag/nextcloud-spreed-signaling:1.1.3 as signaling
|
2023-07-10 21:39:21 +08:00
|
|
|
FROM coturn/coturn:4.6.2-alpine3.18
|
2023-03-22 01:39:18 +08:00
|
|
|
USER root
|
|
|
|
|
|
|
|
COPY --from=nats /nats-server /usr/local/bin/nats-server
|
|
|
|
COPY --from=signaling /usr/bin/nextcloud-spreed-signaling /usr/local/bin/nextcloud-spreed-signaling
|
2021-11-30 18:20:42 +08:00
|
|
|
|
2023-06-18 07:46:37 +08:00
|
|
|
COPY --chmod=775 start.sh /start.sh
|
2023-05-03 22:37:22 +08:00
|
|
|
COPY --chmod=664 supervisord.conf /supervisord.conf
|
|
|
|
|
2021-11-30 18:20:42 +08:00
|
|
|
RUN set -ex; \
|
2023-03-22 01:39:18 +08:00
|
|
|
apk add --no-cache \
|
|
|
|
ca-certificates \
|
|
|
|
tzdata \
|
|
|
|
bash \
|
2023-06-15 20:39:51 +08:00
|
|
|
janus-gateway \
|
2023-03-22 01:39:18 +08:00
|
|
|
openssl \
|
2021-11-30 18:20:42 +08:00
|
|
|
supervisor \
|
2023-03-22 01:39:18 +08:00
|
|
|
bind-tools \
|
|
|
|
netcat-openbsd \
|
|
|
|
shadow \
|
|
|
|
util-linux \
|
|
|
|
build-base \
|
2023-06-18 01:21:57 +08:00
|
|
|
wget \
|
2023-06-15 22:45:16 +08:00
|
|
|
lua5.3-dev \
|
|
|
|
luarocks5.3; \
|
2023-03-22 01:39:18 +08:00
|
|
|
useradd --system talk; \
|
2023-06-15 22:45:16 +08:00
|
|
|
luarocks-5.3 install luajson; \
|
|
|
|
luarocks-5.3 install ansicolors; \
|
2023-03-22 01:39:18 +08:00
|
|
|
rename -v ".jcfg.sample" ".jcfg" /etc/janus/*.sample; \
|
|
|
|
apk del --no-cache \
|
|
|
|
shadow \
|
|
|
|
util-linux \
|
|
|
|
build-base \
|
2023-06-18 01:21:57 +08:00
|
|
|
wget \
|
2023-06-15 22:45:16 +08:00
|
|
|
lua5.3-dev \
|
|
|
|
luarocks5.3; \
|
2023-05-03 22:37:22 +08:00
|
|
|
\
|
2023-05-03 23:32:56 +08:00
|
|
|
# Give root a random password
|
2023-05-03 22:37:22 +08:00
|
|
|
echo "root:$(openssl rand -base64 12)" | chpasswd; \
|
|
|
|
\
|
2023-03-22 01:39:18 +08:00
|
|
|
touch \
|
2023-06-27 00:11:00 +08:00
|
|
|
/etc/nats.conf; \
|
2023-03-22 01:39:18 +08:00
|
|
|
echo "listen: 127.0.0.1:4222" | tee /etc/nats.conf; \
|
|
|
|
mkdir -p \
|
|
|
|
/var/tmp \
|
2023-06-27 00:11:00 +08:00
|
|
|
/conf \
|
2023-03-22 01:39:18 +08:00
|
|
|
/var/lib/turn \
|
|
|
|
/var/log/supervisord \
|
2023-07-13 20:54:45 +08:00
|
|
|
/var/lib/turn \
|
2023-03-22 01:39:18 +08:00
|
|
|
/var/run/supervisord; \
|
|
|
|
chown talk:talk -R \
|
|
|
|
/usr \
|
|
|
|
/etc/janus \
|
|
|
|
/etc/nats.conf \
|
|
|
|
/var/lib/turn \
|
|
|
|
/var/log/supervisord \
|
2023-06-27 00:11:00 +08:00
|
|
|
/var/run/supervisord; \
|
|
|
|
chmod 777 -R \
|
2023-07-13 20:40:51 +08:00
|
|
|
/tmp \
|
2023-06-27 00:11:00 +08:00
|
|
|
/conf \
|
|
|
|
/var/run/supervisord \
|
2023-07-13 20:54:45 +08:00
|
|
|
/var/lib/turn \
|
2023-06-27 00:11:00 +08:00
|
|
|
/var/log/supervisord;
|
2023-03-22 01:39:18 +08:00
|
|
|
|
2022-08-20 02:34:51 +08:00
|
|
|
# Set default talk port https://github.com/nextcloud/all-in-one/issues/1011
|
|
|
|
ENV TALK_PORT=3478
|
|
|
|
|
2021-11-30 18:20:42 +08:00
|
|
|
USER talk
|
2023-06-18 07:46:37 +08:00
|
|
|
ENTRYPOINT ["/start.sh"]
|
2023-06-06 15:22:33 +08:00
|
|
|
CMD ["supervisord", "-c", "/supervisord.conf"]
|
2022-08-25 21:06:23 +08:00
|
|
|
|
2023-04-08 19:25:40 +08:00
|
|
|
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
|
2023-06-26 06:56:08 +08:00
|
|
|
LABEL com.centurylinklabs.watchtower.enable="false"
|