Update README.md

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

View File

@ -1,4 +1,4 @@
# Python Devbox with kickstart.nvim - # Python Devbox with kickstart.nvim
### Python Devbox ### Python Devbox
@ -11,7 +11,7 @@ docker build -t devbox -f devbox.Dockerfile .
# To run the container in background # To run the container in background
docker run -td --name mydevbox -v $(pwd):/workspaces devbox 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 source code is present then your container will have source code in it. You can use this for development # -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 docker exec -it mydevbox /bin/bash
# To enter into devbox # To enter into devbox