Skip to content

UniqueBibleApp webtop on Linux

Eliran Wong edited this page Feb 23, 2022 · 2 revisions

On Linux, users simply need to set up docker to run Unique Bible App webtop version.

Set up Docker

Install instructions on different Linux distros vary, read https://docs.docker.com/engine/install/ for more details.

For example, on Linux [Debian / Ubuntu]:

sudo apt update & sudo apt dist-upgrade

sudo apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"

sudo apt update & sudo apt dist-upgrade

sudo apt-get install docker-ce docker-ce-cli containerd.io

Set up Unique Bible App webtop version

Run in terminal:

sudo docker run -d --name=uniquebibleapp --security-opt seccomp=unconfined -e PUID=1000 -e PGID=1000 -e TZ=Europe/London -e SUBFOLDER=/ -e KEYBOARD=en-gb-qwerty -p 3000:3000 -v ~/uniquebibleapp-webtop:/config -v /var/run/docker.sock:/var/run/docker.sock --shm-size="1gb" --restart unless-stopped eliranwong/uniquebibleapp

To run Unique Bible App webtop version

Open "localhost:3000" on a web browser. Please note that the first run normally takes extra few minutes for set up.

More about Webtop version

https://github.com/eliranwong/uniquebibleapp-webtop

Clone this wiki locally