Added jupyter via Docker
This commit is contained in:
		
							
								
								
									
										10
									
								
								.local/bin/jupyter
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										10
									
								
								.local/bin/jupyter
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
docker stop "$(docker ps --all | grep -i jupyter | awk '{print $1}')" > /dev/null
 | 
			
		||||
docker rm "$(docker ps --all | grep -i jupyter| awk '{print $1}')" > /dev/null
 | 
			
		||||
docker pull jupyter/scipy-notebook:latest
 | 
			
		||||
docker run \
 | 
			
		||||
	--rm \
 | 
			
		||||
	-p 8888:8888 \
 | 
			
		||||
	-e JUPYTER_ENABLE_LAB=yes \
 | 
			
		||||
	-v "$HOME/Documents/Collage/Semestr2/MG":/home/jovyan/ \
 | 
			
		||||
	jupyter/scipy-notebook
 | 
			
		||||
		Reference in New Issue
	
	Block a user