mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-25 15:55:40 +01:00
* Add novnc support deCONZ & rework ingress * add page * rename index to ingress * fix issues * fix vnc setup * Fix config * fix lint * Fix docs
12 lines
449 B
Plaintext
12 lines
449 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Start ozw-admin
|
|
# ==============================================================================
|
|
|
|
# Wait until ozwadmin 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
|