From 50b2a12d7531ec20478673abbaba81e991c624eb Mon Sep 17 00:00:00 2001 From: Shivank Kacker Date: Wed, 15 May 2024 12:28:15 +0530 Subject: [PATCH] Change devcontainer make up command to run after start (#2146) Co-authored-by: Vignesh Hari --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d487346c8d..f7f05c0e56 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -19,6 +19,6 @@ } }, "postCreateCommand": "echo 'eval \"$(direnv hook bash)\"' >> ~/.bashrc && cp .env.example .env", - "postAttachCommand": "make up", + "postStartCommand": "make up", "forwardPorts": [8000, 9000, 4000] }