Update README.md

This commit is contained in:
SamPosh 2023-04-10 18:51:29 +05:30 committed by GitHub
parent a07d5a008d
commit 7e74519187
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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