mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-30 19:26:07 +02:00
Webtop update
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
|
- Switch to ubuntu-mate
|
||||||
|
|
||||||
## 4.16 (07-01-2022)
|
## 4.16 (07-01-2022)
|
||||||
|
|
||||||
- Update to latest version from linuxserver/docker-webtop
|
- Update to latest version from linuxserver/docker-webtop
|
||||||
- Switch to alpine-kde
|
|
||||||
- New standardized logic for Dockerfile build and packages installation
|
- New standardized logic for Dockerfile build and packages installation
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Home assistant add-on: Webtop Alpine
|
# Home assistant add-on: Webtop
|
||||||
|
|
||||||
[![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium)
|
[![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium)
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@ _Thanks to everyone having starred my repo! To star it click on the image below,
|
|||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
[webtop](https://github.com/webtop/webtop) is a full Alpine desktop environments accessible via any modern web browser.
|
[webtop](https://github.com/webtop/webtop) is a full desktop environments accessible via any modern web browser.
|
||||||
This addon is based on the docker image https://github.com/linuxserver/docker-webtop
|
This addon is based on the docker image https://github.com/linuxserver/docker-webtop
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
@@ -25,9 +25,12 @@ By default the image is based around the abc user and we recommend using this us
|
|||||||
|
|
||||||
http://localhost:3000/?login=true
|
http://localhost:3000/?login=true
|
||||||
|
|
||||||
|
Apps installations are not remanent, you need to do it via addon options. Their config, however, is.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
TZ: timezone
|
TZ: timezone
|
||||||
DNS_servers : 8.8.8.8,1.1.1.1 # Keep blank to use router’s DNS, or set custom DNS to avoid spamming in case of local DNS ad-remover
|
additional_apps: engrampa,thunderbird # Allows installation of apps, as they are not persistent
|
||||||
|
DNS_servers: 8.8.8.8,1.1.1.1 # Keep blank to use router’s DNS, or set custom DNS to avoid spamming in case of local DNS ad-remover
|
||||||
localdisks: sda1 #put the hardware name of your drive to mount separated by commas, or its label. Ex: sda1, sdb1, MYNAS...
|
localdisks: sda1 #put the hardware name of your drive to mount separated by commas, or its label. Ex: sda1, sdb1, MYNAS...
|
||||||
networkdisks: "//SERVER/SHARE" # optional, list of smb servers to mount, separated by commas
|
networkdisks: "//SERVER/SHARE" # optional, list of smb servers to mount, separated by commas
|
||||||
cifsusername: "username" # optional, smb username, same for all smb shares
|
cifsusername: "username" # optional, smb username, same for all smb shares
|
||||||
|
|||||||
@@ -1,18 +1,13 @@
|
|||||||
{
|
{
|
||||||
"apparmor": true,
|
"apparmor": true,
|
||||||
"arch": [
|
"arch": ["aarch64", "amd64", "armv7", "armhf"],
|
||||||
"aarch64",
|
|
||||||
"amd64",
|
|
||||||
"armv7",
|
|
||||||
"armhf"
|
|
||||||
],
|
|
||||||
"boot": "auto",
|
"boot": "auto",
|
||||||
"environment": {
|
"environment": {
|
||||||
"PUID": "0",
|
"PUID": "0",
|
||||||
"PGID": "0",
|
"PGID": "0",
|
||||||
"HOME": "/share/webtop"
|
"HOME": "/share/webtop"
|
||||||
},
|
},
|
||||||
"description": "Full Alpine desktop environments accessible via any modern web browser",
|
"description": "Full linux desktop environment accessible via any modern web browser",
|
||||||
"devices": [
|
"devices": [
|
||||||
"/dev/dri",
|
"/dev/dri",
|
||||||
"/dev/dri/card0",
|
"/dev/dri/card0",
|
||||||
@@ -63,17 +58,9 @@
|
|||||||
"PGID": "0",
|
"PGID": "0",
|
||||||
"shm_size": "1gb"
|
"shm_size": "1gb"
|
||||||
},
|
},
|
||||||
"map": [
|
"map": ["media:rw", "share:rw", "ssl"],
|
||||||
"media:rw",
|
"name": "Webtop",
|
||||||
"share:rw",
|
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH", "NET_ADMIN"],
|
||||||
"ssl"
|
|
||||||
],
|
|
||||||
"name": "Webtop Alpine",
|
|
||||||
"privileged": [
|
|
||||||
"SYS_ADMIN",
|
|
||||||
"DAC_READ_SEARCH",
|
|
||||||
"NET_ADMIN"
|
|
||||||
],
|
|
||||||
"ports": {
|
"ports": {
|
||||||
"3000/tcp": 3000
|
"3000/tcp": 3000
|
||||||
},
|
},
|
||||||
@@ -82,7 +69,7 @@
|
|||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
"additional_apps": "engrampa,thunderbird"
|
"additional_apps": "engrampa,thunderbird"
|
||||||
},
|
},
|
||||||
"schema": {
|
"schema": {
|
||||||
"TZ": "str?",
|
"TZ": "str?",
|
||||||
"localdisks": "str?",
|
"localdisks": "str?",
|
||||||
@@ -93,7 +80,7 @@
|
|||||||
"DNS_server": "str?",
|
"DNS_server": "str?",
|
||||||
"additional_apps": "str?"
|
"additional_apps": "str?"
|
||||||
},
|
},
|
||||||
"slug": "webtop_alpine",
|
"slug": "webtop",
|
||||||
"upstream": "4.16",
|
"upstream": "4.16",
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||||
"version": "4.16",
|
"version": "4.16",
|
||||||
|
|||||||
Reference in New Issue
Block a user