Add mentions of SVR.JS Docker images

This commit is contained in:
Dorian Niemiec 2024-05-08 13:51:36 +02:00
parent a38020db6d
commit a5c41f5c47
3 changed files with 15 additions and 4 deletions

View file

@ -28,10 +28,9 @@ _This documentation is in the public domain._
### Installation ### Installation
#### Using SVR.JS installer (installer packages made in April 5, 2024 and later; GNU/Linux only) #### Using SVR.JS installer (installer packages made in April 5, 2024 and later; GNU/Linux only)
The command for SVR.JS installation is available in [the SVR.JS home page](https://svrjs.org). First off, switch to _GNU/Linux_ tab, then copy the command below the tab. After starting the installer, you will be prompted to select the type of SVR.JS installation. After selecting the type, SVR.JS installer will install Node.JS, SVR.JS and create SVR.JS service. During installation, you may be prompted for the installation of dependencies. Once the installation is done, the server is already started at _http://localhost_. The command for SVR.JS installation is available in [the SVR.JS home page](https://svrjs.org). First off, switch to _GNU/Linux_ tab, then copy the command below the tab. After starting the installer, you will be prompted to select the type of SVR.JS installation. After selecting the type, SVR.JS installer will install Node.JS, SVR.JS and create SVR.JS service. During installation, you may be prompted for the installation of dependencies. Once the installation is done, the server is started at _http://localhost_.
File structure will look like this: File structure will look like this:
@ -85,6 +84,10 @@ Restart SVR.JS to get server interface.
After running this command again, you'll get a web server on _http://localhost_. After running this command again, you'll get a web server on _http://localhost_.
#### Using Docker
To install SVR.JS via Docker, first pull the image using `docker pull svrjs/svrjs` command, or `docker pull svrjs/svrjs:lts` command, if you wish to install LTS version of SVR.JS. Then create and start the Docker container using `docker run --name mysvrjs -d -p 80:80 --restart=always svrjs/svrjs` command (replace `mysvrjs` with desired Docker container name). The file structure is the same, as it would be installed via SVR.JS installer. Once the installation is done, the server is started at _http://localhost_.
#### Manual installation #### Manual installation
To install SVR.JS manually, first unpack your SVR.JS zip archive you downloaded from SVR.JS download page. Then change your working directory to one containing SVR.JS script stub, and run `node svr.js` for SVR.JS 3.x or `node svr_new.js` for earlier versions or `bun run svr.js` if you're using Bun instead of Node.JS. To install SVR.JS manually, first unpack your SVR.JS zip archive you downloaded from SVR.JS download page. Then change your working directory to one containing SVR.JS script stub, and run `node svr.js` for SVR.JS 3.x or `node svr_new.js` for earlier versions or `bun run svr.js` if you're using Bun instead of Node.JS.

View file

@ -28,6 +28,10 @@ You can download SVR.JS installer [here](https://downloads.svrjs.org/installer).
You can use `create-svrjs-server <svrjs_version>` command to install and update SVR.JS. You can install this tool using `npm install -g svrjs` command. [Read about how to use _create-svrjs-server_ tool.](https://www.npmjs.com/package/svrjs) You can use `create-svrjs-server <svrjs_version>` command to install and update SVR.JS. You can install this tool using `npm install -g svrjs` command. [Read about how to use _create-svrjs-server_ tool.](https://www.npmjs.com/package/svrjs)
## SVR.JS Docker image
You can pull the [SVR.JS Docker image](https://hub.docker.com/r/svrjs/svrjs) from the Docker Hub using `docker pull svrjs/svrjs` command.
## Download through Tor hidden service ## Download through Tor hidden service
You can download SVR.JS through [a Tor hidden service](https://svrjstn3fs2uaoyjks4rd7f5vptg4fsjarqvjzqqfrfomliagl5z3mqd.onion) (requires Tor connection). You can download SVR.JS through [a Tor hidden service](https://svrjstn3fs2uaoyjks4rd7f5vptg4fsjarqvjzqqfrfomliagl5z3mqd.onion) (requires Tor connection).

View file

@ -4,7 +4,7 @@ function escapeHTML(source) {
function decodeHTML(html) { function decodeHTML(html) {
var txt = document.createElement("textarea"); var txt = document.createElement("textarea");
txt.innerHTML = html; txt.innerHTML = html.replace(/<br *\/?>/g,"\n");
return txt.value; return txt.value;
} }
@ -13,6 +13,10 @@ var tabs = [
name: "GNU/Linux", name: "GNU/Linux",
command: "curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240506.sh > /tmp/installer.sh && sudo bash /tmp/installer.sh", command: "curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240506.sh > /tmp/installer.sh && sudo bash /tmp/installer.sh",
uaRegex: /\b(?:GNU\/)?Linux\b/gi uaRegex: /\b(?:GNU\/)?Linux\b/gi
},
{
name: "Docker",
command: "docker pull svrjs/svrjs\ndocker run --name mysvrjs -d -p 80:80 --restart=always svrjs/svrjs"
} }
]; ];
@ -29,7 +33,7 @@ if (tabs.length > 0) {
tabsHTML += escapeHTML(tabs[i].name); tabsHTML += escapeHTML(tabs[i].name);
} }
tabsHTML += "</a>"; tabsHTML += "</a>";
if (tabToClick == tabs.length && i != tabs.length && navigator.userAgent.match(tabs[i].uaRegex)) tabToClick = i; if (tabToClick == tabs.length && i != tabs.length && tabs[i].uaRegex && navigator.userAgent.match(tabs[i].uaRegex)) tabToClick = i;
} }
otherTab.outerHTML = "<div id=\"command-tab-tabcontainer\">" + tabsHTML + "</div><div id=\"command-tab-container\"></div>"; otherTab.outerHTML = "<div id=\"command-tab-tabcontainer\">" + tabsHTML + "</div><div id=\"command-tab-container\"></div>";
var tabContainer = document.getElementById("command-tab-container"); var tabContainer = document.getElementById("command-tab-container");