mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-19 13:59:15 +02:00
Fix Signal service: Add missing gRPC port configuration
Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
This commit is contained in:
@@ -8,10 +8,12 @@ set -euo pipefail
|
|||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
SIGNAL_PORT=8083
|
SIGNAL_PORT=8083
|
||||||
|
SIGNAL_GRPC_PORT=10000
|
||||||
LOG_LEVEL="info"
|
LOG_LEVEL="info"
|
||||||
|
|
||||||
bashio::log.info "Starting NetBird Signal on port ${SIGNAL_PORT}..."
|
bashio::log.info "Starting NetBird Signal on port ${SIGNAL_PORT} (gRPC: ${SIGNAL_GRPC_PORT})..."
|
||||||
exec /usr/local/bin/netbird-signal run \
|
exec /usr/local/bin/netbird-signal run \
|
||||||
--port "$SIGNAL_PORT" \
|
--port "$SIGNAL_PORT" \
|
||||||
|
--grpc-port "$SIGNAL_GRPC_PORT" \
|
||||||
--log-level "$LOG_LEVEL" \
|
--log-level "$LOG_LEVEL" \
|
||||||
--log-file console
|
--log-file console
|
||||||
|
|||||||
Reference in New Issue
Block a user