mirror of
https://github.com/DCsunset/docker-archlinux-vnc
synced 2025-12-06 08:58:58 +01:00
19 lines
615 B
Bash
Executable file
19 lines
615 B
Bash
Executable file
#!/bin/bash
|
|
|
|
umask 0077 # use safe default permissions
|
|
mkdir -p "$HOME/.vnc" # create config directory
|
|
chmod go-rwx "$HOME/.vnc" # enforce safe permissions
|
|
|
|
tigervnc_path="/tigervnc-${tigervnc_version}.x86_64/usr/bin"
|
|
|
|
# Start TigerVNC
|
|
if [ ! -z $VNC_PASSWD ]; then
|
|
${tigervnc_path}/vncpasswd -f <<< "$VNC_PASSWD" > "$HOME/.vnc/passwd"
|
|
${tigervnc_path}/vncserver -localhost no :0
|
|
else
|
|
${tigervnc_path}/vncpasswd -f <<< "" > "$HOME/.vnc/passwd"
|
|
${tigervnc_path}/vncserver --I-KNOW-THIS-IS-INSECURE -SecurityTypes None -localhost no :0
|
|
fi
|
|
|
|
# Start noVNC
|
|
/noVNC-${noVNC_version}/utils/launch.sh
|