diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ceb8b73ccd..ed7f16e008 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -62,6 +62,21 @@ "close": false } }, + { + "label": "Backend | build SAAS + dnsmasq + identity", + "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -s -d -i", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, { "label": "Backend | rebuild SAAS + dnsmasq", "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -s -d -f", @@ -92,6 +107,36 @@ "close": false } }, + { + "label": "Backend | build EE + identity", + "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -i", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, + { + "label": "Backend | build EE + dnsmasq + identity", + "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/build.backend.docker.py -d -i", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "panel": "new", + "focus": true, + "close": false + } + }, { "label": "Backend | clear", "command": "cd ${workspaceFolder}/../ ; ${command:python.interpreterPath} buildtools/clear.backend.docker.py", diff --git a/frontend.code-workspace b/frontend.code-workspace index 410182e149..0a39f62d16 100644 --- a/frontend.code-workspace +++ b/frontend.code-workspace @@ -67,6 +67,11 @@ "task": "Backend | build SAAS + dnsmasq", "tooltip": "🛠️ Start the \"backend docker build SAAS + dnsmasq\" task", }, + { + "label": "Docker : Build-SAAS + dnsmasq + identity", + "task": "Backend | build SAAS + dnsmasq + identity", + "tooltip": "🛠️ Start the \"backend docker build SAAS + dnsmasq + identity\" task", + }, { "label": "Docker : ReBuild-SAAS + dnsmasq", "task": "Backend | rebuild SAAS + dnsmasq", @@ -77,6 +82,16 @@ "task": "Backend | build EE + dnsmasq", "tooltip": "🛠️ Start the \"backend docker build EE + dnsmasq\" task", }, + { + "label": "Docker : Build-EE + identity", + "task": "Backend | build EE + identity", + "tooltip": "🛠️ Start the \"backend docker build EE + identity\" task", + }, + { + "label": "Docker : Build-EE + dnsmasq + identity", + "task": "Backend | build EE + dnsmasq + identity", + "tooltip": "🛠️ Start the \"backend docker build EE + dnsmasq + identity\" task", + }, { "label": "Docker : Clear", "task": "Backend | clear",