From 99b1226cb2d50d98032022a7d4a4311b0507bfb8 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Thu, 20 Oct 2022 01:13:39 +0000 Subject: [PATCH] Workflow update --- lsio/webtop/docker-compose.yaml | 2 ++ lsio/webtop/docker-run.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/lsio/webtop/docker-compose.yaml b/lsio/webtop/docker-compose.yaml index bc2c3d4..3998510 100644 --- a/lsio/webtop/docker-compose.yaml +++ b/lsio/webtop/docker-compose.yaml @@ -19,6 +19,8 @@ services: - SUBFOLDER=/ # optional # See the keyboard layouts section for more information and options. - KEYBOARD=en-us-qwerty # optional + # String which will be used as page/tab title in the web browser. + - TITLE=Webtop # optional volumes: # abc users home directory - ${BASEDIR:-/volume1/docker}/webtop/config:/config diff --git a/lsio/webtop/docker-run.sh b/lsio/webtop/docker-run.sh index d7e346e..4fc71c3 100644 --- a/lsio/webtop/docker-run.sh +++ b/lsio/webtop/docker-run.sh @@ -10,6 +10,7 @@ docker run -d \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ -e SUBFOLDER=/ `# optional` `# Specify a subfolder to use with reverse proxies, IE `/subfolder/`` \ -e KEYBOARD=en-us-qwerty `# optional` `# See the keyboard layouts section for more information and options.` \ + -e TITLE=Webtop `# optional` `# String which will be used as page/tab title in the web browser.` \ -p 3000:3000 `# Web Desktop GUI` \ -v ${BASEDIR:-/volume1/docker}/webtop/config:/config `# abc users home directory` \ -v /var/run/docker.sock:/var/run/docker.sock `# optional` `# Docker Socket on the system, if you want to use Docker in the container` \