From 59229cf5150728ad5992fd5dcf37ec3128fc5149 Mon Sep 17 00:00:00 2001 From: Zachary Lam Date: Fri, 14 Feb 2025 15:03:49 -0700 Subject: [PATCH 1/2] Added extensions to be pre-installed when the devcontainer is created --- .devcontainer/devcontainer.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8e1e2cd..aa27363 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -50,10 +50,18 @@ // "shutdownAction": "none", // Uncomment the next line to run commands after the container is created. - "postCreateCommand": "cat /etc/os-release" + "postCreateCommand": "cat /etc/os-release", // Configure tool-specific properties. - // "customizations": {}, + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-vscode.cpptools", + "esbenp.prettier-vscode", + ] + } + } // Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "devcontainer" From a022eeabd3d1c070d2a8d32480487e0226c3f89d Mon Sep 17 00:00:00 2001 From: zacharyL16 <144183699+zacharyL16@users.noreply.github.com> Date: Fri, 14 Feb 2025 16:09:27 -0700 Subject: [PATCH 2/2] Update portainer-compose.yml --- portainer-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portainer-compose.yml b/portainer-compose.yml index 0e3dbfc..037b113 100644 --- a/portainer-compose.yml +++ b/portainer-compose.yml @@ -1,4 +1,4 @@ -version: '3.8' + services: # Building and testing environment @@ -6,7 +6,7 @@ services: build: context: . dockerfile: Dockerfile - image: ghcr.io/growlf/toolbox:testing + image: ghcr.io/growlf/toolbox:latest stdin_open: true tty: true command: ["/bin/zsh"]