mirror of https://github.com/Box-boi/vubuntu.git
Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c59dd698ed | ||
|
|
93331185ea | ||
|
|
1fad12f07b | ||
|
|
2ebbf0d957 | ||
|
|
ea2d7e17f3 | ||
|
|
c60647d12c | ||
|
|
699db11752 | ||
|
|
6cdadcb008 | ||
|
|
bf402734b7 | ||
|
|
c76b7558be |
221
Dockerfile
221
Dockerfile
|
|
@ -1,143 +1,126 @@
|
|||
FROM ubuntu:20.04
|
||||
|
||||
LABEL AboutImage "Ubuntu20.04_Fluxbox_NoVNC"
|
||||
|
||||
LABEL Maintainer "Apoorv Vyavahare <apoorvvyavahare@pm.me>"
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
#VNC Server Password
|
||||
ENV VNC_PASS="samplepass" \
|
||||
ENV VNC_PASS="samplepass" \
|
||||
#VNC Server Title(w/o spaces)
|
||||
VNC_TITLE="Vubuntu_Desktop" \
|
||||
VNC_TITLE="Vubuntu_Desktop" \
|
||||
#VNC Resolution(720p is preferable)
|
||||
VNC_RESOLUTION="1280x720" \
|
||||
VNC_RESOLUTION="1280x720" \
|
||||
#VNC Shared Mode (0=off, 1=on)
|
||||
VNC_SHARED=0 \
|
||||
#Local Display Server Port
|
||||
DISPLAY=:0 \
|
||||
DISPLAY=:0 \
|
||||
#NoVNC Port
|
||||
NOVNC_PORT=$PORT \
|
||||
#Ngrok Token (Strictly use private token if using the service)
|
||||
NGROK_AUTH_TOKEN="1xM4IHjFpX4CwPYr82zZJH9ZjYQ_5kmfqfXit97FkTYSGUrZJ" \
|
||||
NOVNC_PORT=$PORT \
|
||||
#Ngrok Token
|
||||
NGROK_AUTH_TOKEN="placeholder" \
|
||||
#Brave Shared Memory Usage (Set it to 0 to disable the use of /dev/shm for Brave Browser, helpful for Heroku)
|
||||
BRAVE_USE_SHM=1 \
|
||||
#Self Backup: Enable Backup Of App Data And App Cache Using Rclone, disabled by default
|
||||
SELF_BACKUP=0 \
|
||||
#Rclone Config Link: rclone.conf : pasted to gist.github.com [Raw Links Only][Secret Gist Only]
|
||||
RCLONE_CONFIG_LINK="placeholder" \
|
||||
#Backup Script Link: Backup Script Which Specifies Which Folders Are To Be Synced By Rclone.
|
||||
BACKUP_SCRIPT_LINK="https://gist.githubusercontent.com/Box-boi/dda8fe9a1be8c21b5666fd317a9d40cc/raw/rclone-backup-script.sh" \
|
||||
#Locale
|
||||
LANG=en_US.UTF-8 \
|
||||
LANGUAGE=en_US.UTF-8 \
|
||||
LC_ALL=C.UTF-8 \
|
||||
TZ="Asia/Kolkata"
|
||||
LANG=en_US.UTF-8 \
|
||||
LANGUAGE=en_US.UTF-8 \
|
||||
LC_ALL=C.UTF-8 \
|
||||
TZ="Asia/Kolkata"
|
||||
|
||||
COPY . /app/.vubuntu
|
||||
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
RUN rm -f /etc/apt/sources.list && \
|
||||
#All Official Focal Repos
|
||||
bash -c 'echo -e "deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse\ndeb-src http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse\ndeb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse\ndeb-src http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse\ndeb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse\ndeb-src http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse\ndeb http://archive.canonical.com/ubuntu focal partner\ndeb-src http://archive.canonical.com/ubuntu focal partner" >/etc/apt/sources.list' && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
#Packages Installation
|
||||
tzdata \
|
||||
software-properties-common \
|
||||
apt-transport-https \
|
||||
wget \
|
||||
htop \
|
||||
git \
|
||||
curl \
|
||||
vim \
|
||||
zip \
|
||||
sudo \
|
||||
net-tools \
|
||||
iputils-ping \
|
||||
build-essential \
|
||||
python3 \
|
||||
python3-pip \
|
||||
python-is-python3 \
|
||||
#perl \
|
||||
#ruby \
|
||||
golang \
|
||||
#lua5.3 \
|
||||
#scala \
|
||||
#mono-complete \
|
||||
#r-base \
|
||||
default-jre \
|
||||
default-jdk \
|
||||
#clojure \
|
||||
#php \
|
||||
nodejs \
|
||||
npm \
|
||||
firefox \
|
||||
gnome-terminal \
|
||||
gnome-calculator \
|
||||
gnome-system-monitor \
|
||||
gedit \
|
||||
vim-gtk3 \
|
||||
mousepad \
|
||||
libreoffice \
|
||||
pcmanfm \
|
||||
terminator \
|
||||
supervisor \
|
||||
x11vnc \
|
||||
xvfb \
|
||||
gnupg \
|
||||
dirmngr \
|
||||
gdebi-core \
|
||||
nginx \
|
||||
openvpn \
|
||||
ffmpeg \
|
||||
pluma && \
|
||||
#Fluxbox
|
||||
apt-get install -y /app/.vubuntu/assets/packages/fluxbox.deb && \
|
||||
#noVNC
|
||||
apt-get install -y /app/.vubuntu/assets/packages/novnc.deb && \
|
||||
cp /usr/share/novnc/vnc.html /usr/share/novnc/index.html && \
|
||||
openssl req -new -newkey rsa:4096 -days 36500 -nodes -x509 -subj "/C=IN/ST=Maharastra/L=Private/O=Dis/CN=www.google.com" -keyout /etc/ssl/novnc.key -out /etc/ssl/novnc.cert && \
|
||||
RUN apt-get update && \
|
||||
apt-get --no-install-recommends install -y \
|
||||
#Basic Packages
|
||||
tzdata software-properties-common apt-transport-https wget zip unzip htop git curl vim nano zip sudo net-tools x11-utils eterm iputils-ping build-essential xvfb x11vnc supervisor \
|
||||
#GUI Utilities
|
||||
gnome-terminal gnome-calculator gnome-system-monitor pcmanfm terminator firefox \
|
||||
#Python
|
||||
python3 python3-pip python-is-python3 \
|
||||
#Java
|
||||
default-jre default-jdk \
|
||||
#Text Editors
|
||||
vim-gtk3 mousepad pluma \
|
||||
#NodeJS
|
||||
nodejs npm \
|
||||
#Go
|
||||
golang \
|
||||
#Other Languages
|
||||
#perl \
|
||||
#ruby \
|
||||
#lua5.3 \
|
||||
#scala \
|
||||
#mono-complete \
|
||||
#r-base \
|
||||
#clojure \
|
||||
#php \
|
||||
#Extras
|
||||
libreoffice \
|
||||
gnupg \
|
||||
dirmngr \
|
||||
gdebi-core \
|
||||
nginx \
|
||||
ffmpeg && \
|
||||
#Fluxbox & noVNC
|
||||
apt-get install --no-install-recommends -y /app/.vubuntu/assets/packages/fluxbox.deb /app/.vubuntu/assets/packages/novnc.deb && \
|
||||
cp /usr/share/novnc/vnc.html /usr/share/novnc/index.html && \
|
||||
openssl req -new -newkey rsa:4096 -days 36500 -nodes -x509 -subj "/C=IN/ST=Maharastra/L=Private/O=Dis/CN=www.google.com" -keyout /etc/ssl/novnc.key -out /etc/ssl/novnc.cert && \
|
||||
#Websockify
|
||||
npm i websockify && \
|
||||
#MATE Desktop
|
||||
#apt-get install -y \
|
||||
#ubuntu-mate-core \
|
||||
#ubuntu-mate-desktop && \
|
||||
#XFCE Desktop
|
||||
#apt-get install -y \
|
||||
#xubuntu-desktop && \
|
||||
npm i websockify && \
|
||||
#MATE Desktop (remove "/app/.vubuntu/assets/packages/fluxbox.deb" from line 66 before uncommenting)
|
||||
#apt-get install -y \
|
||||
#ubuntu-mate-core \
|
||||
#ubuntu-mate-desktop && \
|
||||
#XFCE Desktop (remove "/app/.vubuntu/assets/packages/fluxbox.deb" from line 66 before uncommenting)
|
||||
#apt-get install -y \
|
||||
#xubuntu-desktop && \
|
||||
#TimeZone
|
||||
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
|
||||
echo $TZ > /etc/timezone && \
|
||||
#VS Code
|
||||
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg && \
|
||||
install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/ && \
|
||||
echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list && \
|
||||
rm -f packages.microsoft.gpg && \
|
||||
apt-get update && \
|
||||
apt-get install code -y && \
|
||||
#Brave
|
||||
curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg && \
|
||||
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|tee /etc/apt/sources.list.d/brave-browser-release.list && \
|
||||
apt-get update && \
|
||||
apt-get install brave-browser -y && \
|
||||
#PeaZip
|
||||
wget https://github.com/peazip/PeaZip/releases/download/8.1.0/peazip_8.1.0.LINUX.x86_64.GTK2.deb -P /tmp && \
|
||||
apt-get install -y /tmp/peazip_8.1.0.LINUX.x86_64.GTK2.deb && \
|
||||
#Sublime
|
||||
curl -fsSL https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add - && \
|
||||
add-apt-repository "deb https://download.sublimetext.com/ apt/stable/" && \
|
||||
apt-get install -y sublime-text && \
|
||||
#Telegram
|
||||
wget https://updates.tdesktop.com/tlinux/tsetup.2.9.2.tar.xz -P /tmp && \
|
||||
tar -xvf /tmp/tsetup.2.9.2.tar.xz -C /tmp && \
|
||||
mv /tmp/Telegram/Telegram /usr/bin/telegram && \
|
||||
#PowerShell
|
||||
wget -q https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -P /tmp && \
|
||||
apt-get install -y /tmp/packages-microsoft-prod.deb && \
|
||||
apt-get update && \
|
||||
apt-get install -y powershell && \
|
||||
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
|
||||
echo $TZ > /etc/timezone && \
|
||||
#VS Code - source
|
||||
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /tmp/packages.microsoft.gpg && \
|
||||
install -o root -g root -m 644 /tmp/packages.microsoft.gpg /etc/apt/trusted.gpg.d/ && \
|
||||
echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list && \
|
||||
#Brave - source
|
||||
curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg && \
|
||||
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|tee /etc/apt/sources.list.d/brave-browser-release.list && \
|
||||
#PeaZip - source
|
||||
wget https://github.com/peazip/PeaZip/releases/download/8.2.0/peazip_8.2.0.LINUX.GTK2-1_amd64.deb -P /tmp && \
|
||||
#Sublime - source
|
||||
curl -fsSL https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add - && \
|
||||
add-apt-repository "deb https://download.sublimetext.com/ apt/stable/" && \
|
||||
#Telegram - source
|
||||
wget https://updates.tdesktop.com/tlinux/tsetup.3.2.2.tar.xz -P /tmp && \
|
||||
tar -xvf /tmp/tsetup.3.2.2.tar.xz -C /tmp && \
|
||||
mv /tmp/Telegram/Telegram /usr/bin/telegram && \
|
||||
#PowerShell - source
|
||||
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -P /tmp && \
|
||||
#Installation
|
||||
apt-get update && \
|
||||
apt-get install --no-install-recommends code brave-browser /tmp/peazip_8.2.0.LINUX.GTK2-1_amd64.deb sublime-text /tmp/packages-microsoft-prod.deb -y && \
|
||||
apt-get update && \
|
||||
apt-get install --no-install-recommends -y powershell && \
|
||||
#Ngrok
|
||||
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip -P /tmp && \
|
||||
unzip /tmp/ngrok-stable-linux-amd64.zip -d /usr/bin && \
|
||||
ngrok authtoken $NGROK_AUTH_TOKEN && \
|
||||
wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip -P /tmp && \
|
||||
unzip /tmp/ngrok-stable-linux-amd64.zip -d /usr/bin && \
|
||||
ngrok authtoken $NGROK_AUTH_TOKEN && \
|
||||
#Live Server setup for VSCode
|
||||
code --user-data-dir /root --no-sandbox --install-extension philnash.ngrok-for-vscode && \
|
||||
code --user-data-dir /root --no-sandbox --install-extension ritwickdey.LiveServer && \
|
||||
#Wipe Temp Files
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
apt-get clean && \
|
||||
rm -rf /tmp/*
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
apt-get clean && \
|
||||
apt-get autoremove -y && \
|
||||
rm -rf /tmp/*
|
||||
|
||||
ENTRYPOINT ["supervisord", "-l", "/app/.vubuntu/supervisord.log", "-c"]
|
||||
ENTRYPOINT ["supervisord", "-l", "/app/.vubuntu/assets/logs/supervisord.log", "-c"]
|
||||
|
||||
CMD ["/app/.vubuntu/assets/configs/supervisordconf"]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,19 @@
|
|||
FROM vital987/vubuntu:latest
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive \
|
||||
RUN curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip && \
|
||||
unzip rclone-current-linux-amd64.zip -d /tmp && \
|
||||
cp /tmp/rclone-*-linux-amd64/rclone /usr/bin/ && \
|
||||
chown root:root /usr/bin/rclone && \
|
||||
chmod 755 /usr/bin/rclone && \
|
||||
rm -rf rclone* /tmp/*
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update && \
|
||||
apt-get --no-install-recommends install -y \
|
||||
aria2 neofetch rar unrar rename openssh-client tmate sshpass rsync restic && \
|
||||
ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa <<<y >/dev/null 2>&1
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive \
|
||||
#VNC Server Password
|
||||
VNC_PASS="samplepass" \
|
||||
#VNC Server Title(w/o spaces)
|
||||
|
|
@ -10,9 +23,21 @@ ENV DEBIAN_FRONTEND=noninteractive \
|
|||
#NoVNC Port
|
||||
NOVNC_PORT=5900 \
|
||||
#PORT
|
||||
PORT=80 \
|
||||
PORT=80 \
|
||||
#Disable Shared Memory for Brave
|
||||
BRAVE_USE_SHM=0 \
|
||||
#Self Backup: Enable Backup Of App Data And App Cache Using Rclone, disabled by default
|
||||
SELF_BACKUP=0 \
|
||||
#Rclone Config Link: rclone.conf : pasted to gist.github.com [Raw Links Only][Secret Gist Only]
|
||||
RCLONE_CONFIG_LINK="placeholder" \
|
||||
#Backup Script Link: Backup Script Which Specifies Which Folders Are To Be Synced By Rclone.
|
||||
BACKUP_SCRIPT_LINK="https://gist.githubusercontent.com/Box-boi/dda8fe9a1be8c21b5666fd317a9d40cc/raw/rclone-backup-script.sh" \
|
||||
#Locale
|
||||
LANG=en_US.UTF-8 \
|
||||
LANGUAGE=en_US.UTF-8 \
|
||||
LC_ALL=C.UTF-8 \
|
||||
TZ="Asia/Kolkata"
|
||||
|
||||
#Include The New Changes: self-backup.py and 6-selfbackup.conf
|
||||
COPY . /app/.vubuntu
|
||||
|
||||
|
|
|
|||
56
README.md
56
README.md
|
|
@ -1,42 +1,52 @@
|
|||
# Ubuntu with NoVNC/[PureVNC](https://github.com/vital987/vubuntu/tree/purevnc) (w/o noVNC)
|
||||
# VNC + Ubuntu = Vubuntu ¯\\_\(ツ\)\_\/¯
|
||||
|
||||
[[](https://ubuntu.com) [](https://github.com/vital987) [](https://github.com/vital987) [](https://hub.docker.com/r/vital987/vubuntu) []()<br>[](https://heroku.com/deploy?template=https://github.com/Box-boi/vubuntu/) [](https://heroku.com/deploy?template=https://github.com/Box-boi/vubuntu/tree/minimal) [](https://heroku.com/deploy?template=https://github.com/Box-boi/vubuntu/tree/purevnc) [](https://heroku.com/deploy?template=https://github.com/Box-boi/vubuntu/tree/purevnc-minimal)
|
||||
|
||||
[](https://ubuntu.com) [](https://github.com/vital987) [](https://github.com/vital987) [](https://hub.docker.com/r/vital987/vubuntu) []()<br>[](https://heroku.com/deploy?template=https://github.com/vital987/vubuntu)<br>
|
||||
|
||||
## **Table of Contents :**
|
||||
* [**Available Options**](#available-options-)
|
||||
* [**Packages**](#packages-)
|
||||
* [**Screenshots**](#screenshots-)
|
||||
* [**Environment Variables**](#environment-variables-)
|
||||
* [**Installation**](#installation-)
|
||||
* [**Warnings**](#warnings-)
|
||||
|
||||
## **Available Options :**
|
||||
* **[Latest](https://github.com/vital987/vubuntu/):** Full version of vubuntu with utilities, additional installed languages (Java & Go) & optional packages.
|
||||
* **[Minimal](https://github.com/vital987/vubuntu/tree/minimal):** Minimal version with only required packages, see next section for more info.
|
||||
* **[PureVNC](https://github.com/vital987/vubuntu/tree/purevnc):** Full, direct VNC access without noVNC.
|
||||
* **[PureVNC-Minimal](https://github.com/vital987/vubuntu/tree/purevnc):** Minimal, direct VNC access without noVNC.
|
||||
|
||||
## **Packages :**
|
||||
* •: Available in minimal version
|
||||
* **Browsers :**
|
||||
* []() []()
|
||||
* []() []()
|
||||
* **Shells :**
|
||||
* []() []() []()
|
||||
* []() []() []()
|
||||
* **Coding :**
|
||||
* []()
|
||||
* []()
|
||||
* **Text Editors :**
|
||||
* []() []() []()
|
||||
* []() []() []()
|
||||
* **Office Suite :**
|
||||
* []()
|
||||
* **Social Apps :**
|
||||
* []()
|
||||
* []()
|
||||
* **Utilities :**
|
||||
* []() []() []() []() []()
|
||||
* **Languages Installed :**
|
||||
* []() []() []() []() []() []() []() []() []() []() []()
|
||||
* []() []() []() []() []()
|
||||
* **Languages Installed:**
|
||||
* []() []() []() []() []()
|
||||
|
||||
## **Screenshots :**
|
||||
<div>
|
||||
<details open>
|
||||
<summary>Laptop/Desktop</summary>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/desktop_ss1.png" align="center" width=900 height=500><br><br>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/desktop_ss2.png" align="center" width=900 height=500><br><br>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/desktop_ss1.png" align="center" width=450 height=250>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/desktop_ss2.png" align="center" width=450 height=250><br><br>
|
||||
</details>
|
||||
<details>
|
||||
<summary>Smartphone/Tablet</summary>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/phone_ss1.png" align="center" width=900 height=500><br><br>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/phone_ss2.png" align="center" width=900 height=500><br><br>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/phone_ss1.png" align="center" width=450 height=250>
|
||||
<img src="https://raw.githubusercontent.com/vital987/vubuntu/master/assets/screenshots/phone_ss2.png" align="center" width=450 height=250><br><br>
|
||||
</details>
|
||||
</div>
|
||||
|
||||
|
|
@ -46,9 +56,17 @@
|
|||
|:-:|:-:|
|
||||
| VNC_TITLE | VNC Session Title |
|
||||
| VNC_RESOLUTION | VNC Server Resolution |
|
||||
| VNC_SHARED | VNC Shared Mode |
|
||||
| DISPLAY | Display Server Port |
|
||||
| PORT | NoVNC HTTP Port |
|
||||
| NGROK_AUTH_TOKEN | Ngrok Token |
|
||||
| NGROK_REGION | Ngrok Server Region (Only PureVNC) |
|
||||
| SELF_BACKUP | Enable Backup Of App Data And App Cache Using Rclone, disabled by default |
|
||||
| RCLONE_CONFIG_LINK | Your `rclone.conf` Pasted To gist.github.com[Raw Link Only]. To Generate rclone.conf, visit rclone.org/drive. [Required If SELF_BACKUP=1]. |
|
||||
| BACKUP_SCRIPT_LINK | Backup Script Which Specifies Which Folders Are To Be Synced By Rclone. Default Value Is Provided, And Performs A Complete Backup |
|
||||
| APP_NAME | Name of Heroku app |
|
||||
| NO_SLEEP | Prevent Heroku app from sleeping, disabled by default |
|
||||
| BRAVE_USE_SHM | Usage of /dev/shm for Brave |
|
||||
|
||||
## **Installation :**
|
||||
* Heroku Users :
|
||||
|
|
@ -66,10 +84,16 @@
|
|||
-e PORT=9870 \
|
||||
-d -p 8080:9870 \
|
||||
vital987/vubuntu:latest
|
||||
```
|
||||
* noVNC Web-UI will be accessible on port **8080**
|
||||
|
||||
## **Some More Info About Self Backup Feature And Rclone Feature :**
|
||||
* 1- A Backup Of The Current State Of The VPS, Would Be Taken, And Saved To The CLoud(Which Could Be G-Drive, Onedrive, or any service that supports rclone).
|
||||
* 2- This Backup Would Essentially Run Every 30min and Keep The App-Data(and Some Additional Folders) in Sync Always. This Is done by taking a backup of `.cache`, `.vscode`, `documents`, `downloads`, `.bashrc`, `.ssh`, `.config` etc; And Uploading Them to the cloud every 30min.
|
||||
* 3- Users Are Free To Choose Which Folders Would be backed-up, However, a default config would be provided, that would backup all possible data.
|
||||
|
||||
## **Warnings :**
|
||||
* [ ! ] **VNC_TITLE & VNC_PASS values should be without spaces.**
|
||||
* [ ! ] **The whole project runs as a root user in a docker container.**
|
||||
* [ ! ] **The whole project runs as a root user and non-sandboxed chromium in a docker container.**
|
||||
* [ ! ] **Using VNC/Remote Desktops are strictly prohibited/banned on many free platforms.**
|
||||
* [ ! ] **Deploy/Use at your own risk & responsibility!**
|
||||
|
||||
|
|
|
|||
34
app.json
34
app.json
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"name": "Vubuntu",
|
||||
"description": "Fully fledged Ubuntu NoVNC, refer readme for more info.",
|
||||
"repository": "https://github.com/vital987/vubuntu.git",
|
||||
"logo": "https://imgur.com/1qCGUwK.png",
|
||||
"keywords": ["docker","ubuntu", "vscode", "novnc", "firefox", "brave", "fluxbox", "linux", "remote", "ssh", "vnc", "vubuntu"],
|
||||
"repository": "https://github.com/Box-boi/vubuntu.git",
|
||||
"logo": "https://raw.githubusercontent.com/vital987/vubuntu/master/assets/icons/64x64.png",
|
||||
"keywords": ["docker","ubuntu", "vscode", "novnc", "firefox", "brave", "fluxbox", "linux", "remote", "ssh", "vnc", "vubuntu", "rclone", "auto-backup"],
|
||||
"stack": "container",
|
||||
"env": {
|
||||
"VNC_TITLE" : {
|
||||
|
|
@ -17,8 +17,32 @@
|
|||
},
|
||||
"VNC_RESOLUTION" : {
|
||||
"description": "VNC Server Resolution in WxH, 720p is preferrable.",
|
||||
"value" : "1280x720",
|
||||
"value" : "1280x720",
|
||||
"required" : true
|
||||
}
|
||||
},
|
||||
"SELF_BACKUP" : {
|
||||
"description": "Enable Backup Of App Data And App Cache Using Rclone, 1=on, 0=off",
|
||||
"value" : "0",
|
||||
"required" : true
|
||||
},
|
||||
"RCLONE_CONFIG_LINK" : {
|
||||
"description": "Your `rclone.conf` Pasted To gist.github.com[Raw Link Only][Secret Gist Only]. To Generate rclone.conf, visit rclone.org/drive. [Required If SELF_BACKUP=1].",
|
||||
"required" : false
|
||||
},
|
||||
"BACKUP_SCRIPT_LINK" : {
|
||||
"description": "Backup Script Which Specifies Which Folders Are To Be Synced By Rclone.",
|
||||
"value" : "https://gist.githubusercontent.com/Box-boi/dda8fe9a1be8c21b5666fd317a9d40cc/raw/rclone-backup-script.sh",
|
||||
"required" : true
|
||||
},
|
||||
"NO_SLEEP" : {
|
||||
"description": "Prevent app from sleeping, 1=on, 0=off",
|
||||
"value" : "1",
|
||||
"required" : true
|
||||
},
|
||||
"APP_NAME" : {
|
||||
"description": "Name of the app, same as mentioned above.",
|
||||
"value" : "",
|
||||
"required" : true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
[program:Xvfb]
|
||||
command=bash -c 'Xvfb $DISPLAY -screen 0 $VNC_RESOLUTION"x24" -nolisten unix'
|
||||
autostart=true
|
||||
autorestart=true
|
||||
stderr_logfile=/var/log/Xvfb.stderr.log
|
||||
priority=999
|
||||
stderr_logfile=/app/.vubuntu/assets/logs/Xvfb.stderr.log
|
||||
priority=1
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
[program:VNC]
|
||||
command=bash -c 'x11vnc -storepasswd $VNC_PASS /app/.xpass && x11vnc -usepw -rfbport 5900 -rfbauth /app/.xpass -geometry $VNC_RESOLUTION -forever -alwaysshared -permitfiletransfer -bg -desktop $VNC_TITLE'
|
||||
autostart=true
|
||||
autorestart=false
|
||||
stderr_logfile=/var/log/x11vnc.stderr.log
|
||||
priority=998
|
||||
command=bash -c 'if ((VNC_SHARED==0)); then x11vnc -storepasswd $VNC_PASS /app/.xpass && x11vnc -usepw -rfbport 5900 -rfbauth /app/.xpass -geometry $VNC_RESOLUTION -forever -alwaysshared -permitfiletransfer -bg -desktop $VNC_TITLE; else x11vnc -storepasswd $VNC_PASS /app/.xpass && x11vnc -usepw -rfbport 5900 -rfbauth /app/.xpass -geometry $VNC_RESOLUTION -forever -shared -alwaysshared -permitfiletransfer -bg -desktop $VNC_TITLE; fi'
|
||||
startsecs=0
|
||||
stderr_logfile=/app/.vubuntu/assets/logs/x11vnc.stderr.log
|
||||
priority=2
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
[program:websockify]
|
||||
command=bash -c 'websockify --cert /etc/ssl/novnc.cert --key /etc/ssl/novnc.key -D --web=/usr/share/novnc/ $PORT localhost:5900'
|
||||
autostart=true
|
||||
autorestart=false
|
||||
stderr_logfile=/var/log/websockify.stderr.log
|
||||
priority=997
|
||||
exitcodes=0,1
|
||||
startsecs=0
|
||||
stderr_logfile=/app/.vubuntu/assets/logs/websockify.stderr.log
|
||||
priority=3
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
[program:Fluxbox]
|
||||
command=fluxbox
|
||||
autostart=true
|
||||
autorestart=true
|
||||
priority=996
|
||||
stderr_logfile=/var/log/fluxbox.err.log
|
||||
exitcodes=1
|
||||
priority=4
|
||||
stderr_logfile=/app/.vubuntu/assets/logs/fluxbox.err.log
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
[program:self-ping]
|
||||
command=python3 /app/.vubuntu/assets/scripts/self-ping.py
|
||||
exitcodes=0
|
||||
startsecs=0
|
||||
stderr_logfile=/app/.vubuntu/assets/logs/selfping.err.log
|
||||
priority=5
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
[program:self-backup]
|
||||
command=python3 /app/.vubuntu/assets/scripts/self-backup.py
|
||||
exitcodes=0
|
||||
startsecs=0
|
||||
stderr_logfile=/app/.vubuntu/assets/logs/selfbackup.err.log
|
||||
priority=6
|
||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 174 KiB |
|
|
@ -0,0 +1,51 @@
|
|||
#!/usr/bin/env python3
|
||||
# Script to sync App-Data To Cloud every 30 minutes Using rclone, it also prevents app from sleeping.
|
||||
|
||||
import os
|
||||
import logging
|
||||
from time import sleep
|
||||
if __name__ == "__main__":
|
||||
|
||||
logging.basicConfig(filename="/app/.vubuntu/assets/logs/self-backup.py.log", format='%(asctime)s %(message)s', filemode='w')
|
||||
logger = logging.getLogger()
|
||||
logger.setLevel(logging.INFO)
|
||||
|
||||
if os.getenv("SELF_BACKUP") == "1":
|
||||
if "RCLONE_CONFIG_LINK" not in os.environ:
|
||||
print("[!]RCLONE_CONFIG_LINK unset, terminating...")
|
||||
logger.error("[!]RCLONE_CONFIG_LINK unset, terminating...")
|
||||
exit()
|
||||
|
||||
backup_script_link = os.getenv("BACKUP_SCRIPT_LINK")
|
||||
rclone_config_link = os.getenv("RCLONE_CONFIG_LINK")
|
||||
|
||||
#Create ~/.config/rclone if not present already
|
||||
createdir = 'mkdir -p ~/.config/rclone'
|
||||
True if os.path.isdir("/.config/rclone") else os.system(createdir)
|
||||
|
||||
#Download rclone.conf if not downloaded already
|
||||
download_rclone_conf = 'aria2c --max-tries=0 --retry-wait=5 -o rclone.conf ' + rclone_config_link + ' -d ~/.config/rclone'
|
||||
True if os.path.isfile("/.config/rclone/rclone.conf") else os.system(download_rclone_conf)
|
||||
|
||||
#Clean Duplicate Downloads: If Self Deploying on your personal computer/server, The Above two commands would result in multiple copies of rclone.conf, as depending on server, home(~), might not be the same as root(/)
|
||||
#In Case Of heroku home(~) and root(/) is same. Thus The Statemenet Above checks for /.conf instead of ~/.conf as python doesnt allow "~" in os.path.isfile()
|
||||
#Thus, Clean Up The Residual Copies Of rclone.conf. (files with prefix .1, .2, .3 etc)
|
||||
os.system("rm -rf ~/.config/rclone/rclone.conf.*")
|
||||
|
||||
while True:
|
||||
try:
|
||||
logger.info(f"Starting Sync Using Rclone")
|
||||
argument = 'curl -s ' + backup_script_link + ' | bash'
|
||||
os.system(argument)
|
||||
except:
|
||||
logger.warning("Sync failed, retrying...")
|
||||
try:
|
||||
logger.info(f"Retrying Sync Using Rclone")
|
||||
argument = 'curl -s ' + backup_script_link + ' | bash'
|
||||
os.system(argument)
|
||||
except:
|
||||
logger.error("Cannot Sync App-Date, Make Sure rclone.conf is filled properly! Terminating...")
|
||||
sleep(25*60)
|
||||
else:
|
||||
print("SELF_BACKUP mode disabled, terminating...")
|
||||
logger.info("SELF_BACKUP mode disabled, terminating...")
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
#!/usr/bin/env python3
|
||||
# Script to send GET request to the Heroku app URL every 25 minutes to prevent the app from sleeping.
|
||||
import os
|
||||
import logging
|
||||
try:
|
||||
import requests
|
||||
except:
|
||||
os.system("pip3 install requests")
|
||||
import requests
|
||||
from time import sleep
|
||||
if __name__ == "__main__":
|
||||
|
||||
logging.basicConfig(filename="/app/.vubuntu/assets/logs/self-ping.py.log", format='%(asctime)s %(message)s', filemode='w')
|
||||
logger = logging.getLogger()
|
||||
logger.setLevel(logging.INFO)
|
||||
|
||||
if os.getenv("NO_SLEEP") == "1":
|
||||
if "APP_NAME" not in os.environ:
|
||||
print("[!]APP_NAME unset, terminating...")
|
||||
logger.error("[!]APP_NAME unset, terminating...")
|
||||
exit()
|
||||
app_name = os.getenv("APP_NAME")
|
||||
while True:
|
||||
try:
|
||||
logger.info(f"Pinging https://{app_name}.herokuapp.com")
|
||||
requests.get(f"https://{app_name}.herokuapp.com")
|
||||
except:
|
||||
logger.warning("Ping failed, retrying...")
|
||||
try:
|
||||
requests.get(f"https://{app_name}.herokuapp.com")
|
||||
except:
|
||||
logger.error("Cannot ping app, terminating...")
|
||||
sleep(25*60)
|
||||
else:
|
||||
print("NO_SLEEP mode disabled, terminating...")
|
||||
logger.info("NO_SLEEP mode disabled, terminating...")
|
||||
|
||||
Loading…
Reference in New Issue