Created
August 14, 2019 22:44
-
-
Save damianavila/4ed8be2ef6c3e2aa091f6bbb4296fe37 to your computer and use it in GitHub Desktop.
Test jupyter_logging extension
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
FROM jupyter/scipy-notebook:2ce7c06a61a1 | |
# Add jupyter_logging | |
RUN conda install -c damianavila82 jupyter_logging --no-deps | |
# And config the extension with the proper keys | |
COPY jupyter_logging.json /opt/conda/etc/jupyter/jupyter_notebook_config.d/jupyter_logging.json |
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
{ | |
"jupyter_logging": { | |
"identityPoolId": "foopool", | |
"kinesisStreamName": "foobar", | |
"nameOfLogs": "Testing config file in home on binder image" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment