Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bf4/e9a7016e4c5dca2d6b8a19d6e10d23c0 to your computer and use it in GitHub Desktop.

Select an option

Save bf4/e9a7016e4c5dca2d6b8a19d6e10d23c0 to your computer and use it in GitHub Desktop.

Revisions

  1. @lvnilesh lvnilesh revised this gist Feb 21, 2017. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions gistfile.md
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,9 @@
    Step 0. Install Docker

    Step 1. For your chosen project, decide where you want to store your notebooks and files in a `workingfolder`.

    Step 2. Open that folder in the terminal `cd workingfolder`

    Step 3. Run this command

    docker run -it --rm -v $PWD:/home/jovyan/work -p 8888:8888 jupyter/all-spark-notebook
  2. @lvnilesh lvnilesh renamed this gist Feb 21, 2017. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. @lvnilesh lvnilesh created this gist Feb 21, 2017.
    15 changes: 15 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    Step 0. Install Docker
    Step 1. For your chosen project, decide where you want to store your notebooks and files in a `workingfolder`.
    Step 2. Open that folder in the terminal `cd workingfolder`
    Step 3. Run this command

    docker run -it --rm -v $PWD:/home/jovyan/work -p 8888:8888 jupyter/all-spark-notebook

    Step 4. This above step generates a link. Open that link in your preferred browser. The browser window will then automatically show all those notebooks stored in that workingfolder and now you can click to save changes. And also you do not need to upload/download anything.

    Step 5. Have fun with your project you are working on for Step 1.

    Step 6. Exit browser and break step 3 in terminal by pressing `control-C`

    Repeat steps 1..6 for another project.