mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-09 09:55:31 +01:00
24 lines
872 B
Bash
Executable file
24 lines
872 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir -p /var/run/sshd
|
|
|
|
# create an ubuntu user
|
|
# PASS=`pwgen -c -n -1 10`
|
|
PASS=ubuntu
|
|
# echo "Username: ubuntu Password: $PASS"
|
|
id -u ubuntu &>/dev/null || useradd --create-home --shell /bin/bash --user-group --groups adm,sudo ubuntu
|
|
echo "ubuntu:$PASS" | chpasswd
|
|
chown -R ubuntu:ubuntu /home/ubuntu
|
|
sudo -u ubuntu -i bash -c "mkdir -p /home/ubuntu/.config/pcmanfm/LXDE/ \
|
|
&& cp /usr/share/doro-lxde-wallpapers/desktop-items-0.conf /home/ubuntu/.config/pcmanfm/LXDE/"
|
|
|
|
if [ -n "$VNC_PASSWORD" ]; then
|
|
echo -n "$VNC_PASSWORD" > /.password1
|
|
x11vnc -storepasswd $(cat /.password1) /.password2
|
|
chmod 400 /.password*
|
|
sed -i 's/^command=x11vnc.*/& -rfbauth \/.password2/' /etc/supervisor/conf.d/supervisord.conf
|
|
fi
|
|
|
|
cd /usr/lib/web && ./run.py > /var/log/web.log 2>&1 &
|
|
nginx -c /etc/nginx/nginx.conf
|
|
exec /bin/tini -- /usr/bin/supervisord -n
|