-
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 794806b
Showing
6 changed files
with
28,373 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 @@ | ||
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 |
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,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 | ||
``` |
Oops, something went wrong.