mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-08 05:21:51 +00:00
12 lines
445 B
Plaintext
12 lines
445 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Start Websockify
|
|
# ==============================================================================
|
|
|
|
# Wait until vnc is up and running
|
|
bashio::log.info "Websockify waiting for VNC to start"
|
|
bashio::net.wait_for 5900
|
|
|
|
bashio::log.info "Starting websockify..."
|
|
exec websockify -v --web /usr/share/novnc/ 127.0.0.1:5901 127.0.0.1:5900
|