mirror of
https://github.com/linuxserver/docker-kasm.git
synced 2026-01-23 02:24:38 +00:00
12 lines
178 B
Text
12 lines
178 B
Text
#!/usr/bin/with-contenv bash
|
|
|
|
# Wait for docker to be up
|
|
while true; do
|
|
if [ -S "/var/run/docker.sock" ]; then
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
cd /wizard
|
|
/usr/bin/node index.js
|