Skip to content
This repository has been archived by the owner on Jan 18, 2020. It is now read-only.

Commit

Permalink
docker docker docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mfa committed Nov 27, 2015
0 parents commit 1bc54a2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
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
8 changes: 8 additions & 0 deletions docker-compose.yml
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 added notebook/.gitkeep
Empty file.
8 changes: 8 additions & 0 deletions readme.md
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/)

0 comments on commit 1bc54a2

Please sign in to comment.