From 7e7451918723dd5466a763d748ad92cce8d42b93 Mon Sep 17 00:00:00 2001 From: SamPosh Date: Mon, 10 Apr 2023 18:51:29 +0530 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b157ff1..d20c2ccd 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,15 @@ Prepare your python development environment using neovim with kickstarter.nvim c This will have all the plugins in kickstart.nvim installed in it. I have added python debug support and neotree as extra ``` +# Build your devbox image docker build -t devbox -f devbox.Dockerfile . # To run the container in background - docker run -td --name mydevbox -v $(pwd):/workspaces devbox # -v $(pwd) is used to create volume inside container . IF you run from the folder where your source code is available then your container will have source code in it. You can use this as development box -docker exec -it mydevbox /bin/bash # To enter into devbox +docker exec -it mydevbox /bin/bash # You can do debug using standard keys used in vscode F5 - to start debug