From 01a28ad4577e72516ec7487d666ebe725198ff3c Mon Sep 17 00:00:00 2001 From: Colin Seymour Date: Sun, 21 Apr 2024 10:48:38 +0000 Subject: [PATCH 1/3] Don't set image for dev This is set in the addons repo and not needed in dev --- config.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.json b/config.json index 962bab7..48e26bf 100644 --- a/config.json +++ b/config.json @@ -37,6 +37,5 @@ "jwt_secret_key": "str?", "silent": "bool?" }, - "codenotary": "colin@symr.io", - "image": "ghcr.io/lildude/ha-addon-ghostfolio-{arch}" + "codenotary": "colin@symr.io" } \ No newline at end of file From 01dfb3376afb6aa2ddf992d45558d82ba6e35803 Mon Sep 17 00:00:00 2001 From: Colin Seymour Date: Sun, 21 Apr 2024 10:49:26 +0000 Subject: [PATCH 2/3] Workaround HA devcontainer issue See https://github.com/home-assistant/supervisor/issues/502 --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f842b7b..9174896 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,7 @@ "name": "HA Addon: Ghostfolio", "image": "ghcr.io/home-assistant/devcontainer:addons", "appPort": ["7123:8123", "7357:4357"], - "postStartCommand": "bash devcontainer_bootstrap", + "postStartCommand": "sudo sed -i 's/export SUPERVISOR_VERSION=.*/export SUPERVISOR_VERSION=2024.03.1.dev1803/' /etc/supervisor_scripts/common && bash devcontainer_bootstrap", // Workaround until https://github.com/home-assistant/supervisor/issues/5021 is fixed", "runArgs": ["-e", "GIT_EDITOR=code --wait", "--privileged"], "containerEnv": { "WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}" From 28e59a7b5411716fc74e635b98aa070033cea8e6 Mon Sep 17 00:00:00 2001 From: Colin Seymour Date: Sun, 21 Apr 2024 11:23:30 +0000 Subject: [PATCH 3/3] Revert "Don't set image for dev" This reverts commit 01a28ad4577e72516ec7487d666ebe725198ff3c. --- config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 48e26bf..962bab7 100644 --- a/config.json +++ b/config.json @@ -37,5 +37,6 @@ "jwt_secret_key": "str?", "silent": "bool?" }, - "codenotary": "colin@symr.io" + "codenotary": "colin@symr.io", + "image": "ghcr.io/lildude/ha-addon-ghostfolio-{arch}" } \ No newline at end of file