diff --git a/Dockerfile b/Dockerfile index 9e6bee9..34a2cd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ ENV DEBIAN_FRONTEND=noninteractive \ LANGUAGE=en_US.UTF-8 \ LC_ALL=C.UTF-8 \ DISPLAY=:0 \ - DISPLAY_WIDTH=1920 \ - DISPLAY_HEIGHT=1080 \ + DISPLAY_WIDTH=1280 \ + DISPLAY_HEIGHT=720 \ SHELL=/bin/bash CMD ["/bin/sh"] @@ -66,6 +66,8 @@ RUN chmod +x /etc/supervisor/conf.d/exec.sh #Copying the configuration for supervisord COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf +COPY cert.pem /etc/cert.pem + VOLUME ["/sys/fs/cgroup", "/root/.mozilla", "/var/lib/"] #Starting the supervisor diff --git a/supervisord.conf b/supervisord.conf index 5a1be2f..8401237 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -10,7 +10,7 @@ command=/usr/bin/x11vnc -xkb -noxrecord -noxfixes -noxdamage -display :0 -nopw - autorestart=true [program:novnc] -command=/root/noVNC/utils/launch.sh --vnc localhost:5900 --listen 8080 +command=/root/noVNC/utils/launch.sh --vnc localhost:5900 --listen 8080 --listen 8443 --cert /etc/cert.pem autorestart=true [program:socat] @@ -35,4 +35,4 @@ autorestart=false [program:firefox] command=firefox https://github.com/SimpleMethod -autorestart=false \ No newline at end of file +autorestart=false diff --git a/x86_64/alpine-minirootfs-3.9.4-x86_64.tar.gz b/x86_64/alpine-minirootfs-3.9.4-x86_64.tar.gz index cd0c9be..4ce434b 100644 Binary files a/x86_64/alpine-minirootfs-3.9.4-x86_64.tar.gz and b/x86_64/alpine-minirootfs-3.9.4-x86_64.tar.gz differ