mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-03-06 13:18:23 +01:00
18 lines
555 B
Plaintext
18 lines
555 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -euo pipefail
|
|
|
|
# ==============================================================================
|
|
# Home Assistant Add-on: NetBird Server
|
|
# Runs the NetBird Signal service
|
|
# ==============================================================================
|
|
|
|
SIGNAL_PORT=8083
|
|
LOG_LEVEL="info"
|
|
|
|
bashio::log.info "Starting NetBird Signal on port ${SIGNAL_PORT} (legacy gRPC on 10000)..."
|
|
exec /usr/local/bin/netbird-signal run \
|
|
--port "$SIGNAL_PORT" \
|
|
--log-level "$LOG_LEVEL" \
|
|
--log-file console
|