* correct freegames url * skip downloading browsers in docker * remove fluxbox * remove stdout for vnc & xvfb
8 lines
203 B
Bash
Executable file
8 lines
203 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Start VNC in a background process:
|
|
x11vnc -display "$DISPLAY" -forever -shared -rfbport "${VNC_PORT:-5900}" \
|
|
-passwd "${VNC_PASSWORD:-secret}" &
|
|
|
|
# Execute the given command:
|
|
exec "$@"
|