Update README.md
This commit is contained in:
parent
7f3eb743e8
commit
3615e77d3e
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue