This repository has been archived by the owner on Jan 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit 1bc54a2
Showing
4 changed files
with
27 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Pull base image. | ||
FROM jupyter/all-spark-notebook | ||
MAINTAINER xxx | ||
|
||
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | ||
|
||
USER root | ||
|
||
WORKDIR /data | ||
EXPOSE 8888 | ||
CMD jupyter notebook --no-browser --ip=0.0.0.0 |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
main: | ||
build: . | ||
environment: | ||
PYTHONUNBUFFERED: 0 | ||
volumes: | ||
- ./notebook:/data | ||
ports: | ||
- "8888:8888" |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# jupyter ... with all the statistics | ||
|
||
## run | ||
|
||
``docker-compose up`` | ||
|
||
surf to: [http://localhost:8888/](http://localhost:8888/) | ||
|