From 9af9c9ae3b51d769f4c9d2cd01b5c6a04169e2a6 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Mon, 7 Feb 2022 00:35:51 +0000 Subject: [PATCH] Workflow update --- lsio/webtop/docker-compose.yaml | 9 +++++---- lsio/webtop/docker-run.sh | 8 ++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/lsio/webtop/docker-compose.yaml b/lsio/webtop/docker-compose.yaml index 3a6d24e..7cce417 100644 --- a/lsio/webtop/docker-compose.yaml +++ b/lsio/webtop/docker-compose.yaml @@ -1,6 +1,6 @@ -# [Webtop](https://github.com/linuxserver/docker-webtop) - Alpine, Ubuntu, -# Fedora, and Arch based containers containing full desktop environments in -# officially supported flavors accessible via any modern web browser. +# [Webtop](https://github.com/linuxserver/gclient) - Alpine, Ubuntu, Fedora, and +# Arch based containers containing full desktop environments in officially +# supported flavors accessible via any modern web browser. --- version: "2.1" @@ -8,7 +8,6 @@ services: webtop: image: ghcr.io/linuxserver/webtop container_name: webtop - privileged: true # optional environment: # for GroupID - PUID=${PUID:-1024} @@ -18,6 +17,8 @@ services: - TZ=${TZ:-Europe/Amsterdam} # Specify a subfolder to use with reverse proxies, IE `/subfolder/` - SUBFOLDER=/ # optional + # See the keyboard layouts section for more information and options. + - KEYBOARD=en-us-qwerty # 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 4947af7..afdb5b0 100644 --- a/lsio/webtop/docker-run.sh +++ b/lsio/webtop/docker-run.sh @@ -1,15 +1,15 @@ -# [Webtop](https://github.com/linuxserver/docker-webtop) - Alpine, Ubuntu, -# Fedora, and Arch based containers containing full desktop environments in -# officially supported flavors accessible via any modern web browser. +# [Webtop](https://github.com/linuxserver/gclient) - Alpine, Ubuntu, Fedora, and +# Arch based containers containing full desktop environments in officially +# supported flavors accessible via any modern web browser. source ./.env docker run -d \ --name=webtop \ - --privileged `# optional` \ -e PUID=${PUID:-1024} `# for GroupID` \ -e PGID=${PGID:-100} `# for UserID` \ -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.` \ -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` \