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