-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7c574f
commit 040e18c
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
# ironoc-spark | ||
|
||
Run Jupyter Notebook via Docker & map workspace location: | ||
- docker run -p 8888:8888 -v /Users/conorheffron/workspace/ironoc-spark:/home/jovyan jupyter/minimal-notebook | ||
|
||
```shell | ||
docker run -p 8888:8888 -v /Users/conorheffron/workspace/ironoc-spark:/home/jovyan jupyter/minimal-notebook | ||
``` | ||
Run Jupyter Notebook via Docker with PySpark & JDK pre-installed: | ||
- docker run -it --rm -p 8888:8888 jupyter/pyspark-notebook | ||
```shell | ||
docker run -it --rm -p 8888:8888 jupyter/pyspark-notebook | ||
``` | ||
- Add csv, json & ipynb files to workspace directory |