Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mtpatter committed Apr 24, 2017
0 parents commit 794806b
Show file tree
Hide file tree
Showing 6 changed files with 28,373 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 @@
FROM jupyter/all-spark-notebook
LABEL maintainer "maria.t.patterson@gmail.com"
ENV REFRESHED_AT 2017-04-20

# Get schemas. # TODO update to checkout master when schema is updated
WORKDIR /home/jovyan
RUN git clone https://github.com/lsst-dm/sample-avro-alert.git && cd sample-avro-alert && git checkout tickets/DM-8160

WORKDIR /home/jovyan/work
ADD requirements.txt .
RUN pip install -r requirements.txt
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
bilao
============

Serving up winnowed data.

Usage
-------------------

```
docker build . -t "bilao"
```

Some notebooks assume use with the [LSST DM alert_stream testbed](github.com/lsst-dm/alert_stream) on a running Docker network for that testbed, named "alertstream_default", as in the configuration below.

Follow the instructions to access the Notebook server after running:

```
docker run -it \
--rm \
-v $PWD:/home/jovyan/work:rw \
-p 8888:8888 -p 4040:4040 \
--network=alertstream_default \
-P \
bilao
```
Loading

0 comments on commit 794806b

Please sign in to comment.