default options

This commit is contained in:
Michael Pilosov 2021-11-27 20:04:20 -07:00
parent d0b0d2585e
commit 95cef91b1a
4 changed files with 9 additions and 3 deletions

View File

@ -50,10 +50,15 @@ COPY install_monitoring.sh /tmp/
COPY install_hugo.sh /tmp/ COPY install_hugo.sh /tmp/
COPY install_geckodriver.sh /tmp/ COPY install_geckodriver.sh /tmp/
USER root
## CONFIG ## CONFIG
# Copy over config which creates launcher icons in jupyterlab # Copy over config which creates launcher icons in jupyterlab
COPY jupyter_notebook_config.py /home/jovyan/.jupyter/ COPY jupyter_notebook_config.py /home/jovyan/.jupyter/
COPY ./jupyterlab_settings /home/jovyan/.jupyter/lab/user-settings/@jupyterlab RUN mkdir -p /home/$NB_USER/.jupyter/lab/workspaces/
COPY ./jupyterlab_settings /home/$NB_USER/.jupyter/lab/user-settings/@jupyterlab
RUN chmod -R 777 /home/$NB_USER/.jupyter/lab
USER $NB_UID
# USER SETTINGS # USER SETTINGS
RUN echo "export EDITOR=/usr/bin/vim" >> /home/$NB_USER/.bashrc RUN echo "export EDITOR=/usr/bin/vim" >> /home/$NB_USER/.bashrc

View File

@ -6,5 +6,6 @@
// Selected Theme // Selected Theme
// Application-level visual styling theme // Application-level visual styling theme
"theme": "JupyterLab Dark" // "theme": "JupyterLab Dark"
"theme": "JupyterLab Miami Nights"
} }