From b4f6befdeaf2c9788459572b18c682346e6690a2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 10 Dec 2020 13:20:12 +0100 Subject: [PATCH 1/7] Add boot arg --- code-server/config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/code-server/config.json b/code-server/config.json index 016977753..a7c43bba6 100644 --- a/code-server/config.json +++ b/code-server/config.json @@ -22,6 +22,7 @@ "ssl" ], "webui": "http://[HOST]:[PORT:3000]", + "boot": auto "environment": { "PUID": "0", "PGID": "0" From 22e0f73a52031410e0ee9f1d3583aaccbe76f3f9 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 10 Dec 2020 13:21:04 +0100 Subject: [PATCH 2/7] Correction --- code-server/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-server/config.json b/code-server/config.json index a7c43bba6..777652e38 100644 --- a/code-server/config.json +++ b/code-server/config.json @@ -22,7 +22,7 @@ "ssl" ], "webui": "http://[HOST]:[PORT:3000]", - "boot": auto + "boot": auto, "environment": { "PUID": "0", "PGID": "0" From f77dfc785934f0f0f4446fc51bf7e39ef6d6ca4d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 10 Dec 2020 13:22:26 +0100 Subject: [PATCH 3/7] Correction --- code-server/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-server/config.json b/code-server/config.json index 777652e38..295555526 100644 --- a/code-server/config.json +++ b/code-server/config.json @@ -22,7 +22,7 @@ "ssl" ], "webui": "http://[HOST]:[PORT:3000]", - "boot": auto, + "boot": "auto", "environment": { "PUID": "0", "PGID": "0" From 30e6f22c25946a4aad673262d164adf4882e5ff7 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 10 Dec 2020 15:27:00 +0100 Subject: [PATCH 4/7] correct webui port --- code-server/config.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/code-server/config.json b/code-server/config.json index 295555526..ff9e80f5d 100644 --- a/code-server/config.json +++ b/code-server/config.json @@ -1,9 +1,9 @@ { "name": "VS code", - "version": "1.0", + "version": "1.1", "slug": "code-server", - "description": "Double Commander is a free cross platform open source file manager with two panels side by side.", - "url": "https://github.com/alexbelgium/hassio-addons/code-server", + "description": "Code-server is VS Code running on a remote server, accessible through the browser.", + "url": "https://hub.docker.com/r/linuxserver/code-server", "startup": "services", "arch": [ "aarch64", @@ -21,7 +21,9 @@ "media:rw", "ssl" ], - "webui": "http://[HOST]:[PORT:3000]", + "privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"], + "full_access": true, + "webui": "http://[HOST]:[PORT:8443]", "boot": "auto", "environment": { "PUID": "0", From d4afd440e8d08e03bbac7f0d349203da418942ca Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 10 Dec 2020 15:28:56 +0100 Subject: [PATCH 5/7] Update README.md --- code-server/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code-server/README.md b/code-server/README.md index 983fb43c2..e48418686 100644 --- a/code-server/README.md +++ b/code-server/README.md @@ -1,10 +1,10 @@ -# Hassio Add-ons by alexbelgium: doublecommander +# Hassio Add-ons by alexbelgium: code-server ## About -Double Commander is a free cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas. +Code-server is VS Code running on a remote server, accessible through the browser. -This addon is based on the [docker image](https://github.com/linuxserver/docker-doublecommander) from linuxserver.io. +This addon is based on the [docker image](https://github.com/linuxserver/code-server) from linuxserver.io. ## Installation @@ -21,7 +21,7 @@ comparison to installing any other Hass.io add-on. ## Configuration -Webui can be found at `:3000`. +Webui can be found at `:8443`. [repository]: https://github.com/alexbelgium/hassio-addons From cd280b644d421826031a05691af096c11412dd05 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 10 Dec 2020 15:30:02 +0100 Subject: [PATCH 6/7] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 57ef6f2bd..210a0b3c6 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,10 @@ The torrent client for Hass.io with OpenVPN support. A free cross platform open source file manager with two panels side by side. - Based on latest linuxserver image +### [code-server](code-server/) +Code-server is VS Code running on a remote server, accessible through the browser. +- Based on latest linuxserver image + [//]: # (ADDONLIST_END) [third-party-addons]: https://home-assistant.io/hassio/installing_third_party_addons/ From b60f4a4125420a8021cbc81662a0dd803c0ddcf4 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 10 Dec 2020 15:30:50 +0100 Subject: [PATCH 7/7] Update README.md --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 210a0b3c6..7f69d0892 100644 --- a/README.md +++ b/README.md @@ -17,27 +17,28 @@ https://github.com/alexbelgium/hassio-addons [//]: # (ADDONLIST_START) -### [emby](emby/) +### [Emby NAS](emby/) A Free Software Media System that puts you in control of managing and streaming your media. - Based on linuxserver image latest beta - Forked from : https://github.com/petersendev/hassio-addons - Modifications : switch to linuxserver beta versions, add smb and local disks mount -### [radarr](radarr/) +### [Radarr NAS](radarr/) - Forked from : https://github.com/petersendev/hassio-addons - Modifications : add smb and local disks mount -### [transmission](transmission/) +### [Transmission NAS](transmission/) The torrent client for Hass.io with OpenVPN support. - Based on latest transmission - Forked from : https://github.com/Alexwijn/hassio-addon-transmission - Modifications : add smb and local disks mount -### [doublecommander](doublecommander/) +### [Doublecommander NAS](doublecommander/) A free cross platform open source file manager with two panels side by side. - Based on latest linuxserver image +- Modifications : add smb and local disks mount -### [code-server](code-server/) +### [Code-server](code-server/) Code-server is VS Code running on a remote server, accessible through the browser. - Based on latest linuxserver image