Skip to content

Commit

Permalink
jupyter notebook configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kuanb committed Dec 27, 2017
1 parent c23ac2b commit c1b1b01
Show file tree
Hide file tree
Showing 3 changed files with 695 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM calthorpeanalytics/python3-geo:3.6.3-1.0.0

RUN mkdir -p /provisioning/peartree
COPY . /provisioning/peartree

# can now install Peartree via repo
RUN cd /provisioning/peartree && \
pip install .
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

version: "1"

services:

# Jupyter Notebook
notebook:
build:
context: .
env_file: .env
command: jupyter notebook --config jupyter_notebook_config.py
volumes:
- .:/code
- /tmp:/tmp
ports:
- "9898:9898"
Loading

0 comments on commit c1b1b01

Please sign in to comment.