vendor/easy-asterisk/: All source files from outis1one/easy-asterisk v0.10.0 vendored so the repo is self-contained — no internet required at install time. Includes the real Dockerfile (FROM ubuntu:24.04 + full Asterisk stack), entrypoint.sh (IP detection, TLS cert gen, pjsip/rtp config, web admin), coturn-entrypoint.sh (robust IP detection wrapper), and the management script + diagnostic utilities. services/asterisk.sh: Rewritten to copy from vendor/ instead of downloading at runtime. Uses the upstream Dockerfile verbatim. Symlinks easy-asterisk-v0.10.0.sh → easy-asterisk.sh for build context compatibility. services/onlyoffice.sh: Complete rewrite with correct standalone bootstrap. _ensure_yq() installs yq v4 automatically (arch-aware). JWT secret is preserved across re-runs so rotating is explicit. _wire_nextcloud() and _wire_filebrowser() run on every install invocation (idempotent), skipping gracefully when containers aren't running rather than failing. https://claude.ai/code/session_014CCYqVwW6d6f5dw1qRokYt
27 lines
939 B
Bash
27 lines
939 B
Bash
#!/bin/sh
|
|
# ================================================================
|
|
# Robust coturn entrypoint
|
|
#
|
|
# The coturn/coturn Docker image's native entrypoint uses:
|
|
# exec $(eval "echo $@")
|
|
# which is fragile — if DETECT_EXTERNAL_IP's DNS lookup returns empty,
|
|
# the eval produces an empty token → "ERROR: CONFIG: Unknown argument:"
|
|
#
|
|
# This wrapper reuses the image's detect-external-ip script but avoids
|
|
# the eval word-splitting issue. If detection fails, we simply omit
|
|
# --external-ip rather than passing a blank argument.
|
|
# ================================================================
|
|
|
|
# Use explicit PUBLIC_IP if provided, otherwise auto-detect
|
|
if [ -z "$PUBLIC_IP" ]; then
|
|
PUBLIC_IP=$(detect-external-ip 2>/dev/null || true)
|
|
fi
|
|
|
|
# Only add --external-ip if we actually have an IP
|
|
EXTERNAL_IP_ARG=""
|
|
if [ -n "$PUBLIC_IP" ]; then
|
|
EXTERNAL_IP_ARG="--external-ip=$PUBLIC_IP"
|
|
fi
|
|
|
|
exec turnserver "$@" $EXTERNAL_IP_ARG
|