From 284a927f47bcf38ea3b6ab10a3e5d507aeb5aebc Mon Sep 17 00:00:00 2001 From: kreuzer <t.kreuzer@fz-juelich.de> Date: Sat, 12 Jun 2021 20:47:11 +0200 Subject: [PATCH] add mount folders, run as root (start script ensures JupyterLab is running as jovyan) --- Dockerfile | 7 +++++-- LICENSE | 29 +++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 LICENSE diff --git a/Dockerfile b/Dockerfile index a286b3c..a21874b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -80,7 +80,10 @@ RUN wget -O /tmp/libssl1.0.0.deb http://security.ubuntu.com/ubuntu/pool/main/o/o WORKDIR /home/$NB_USER COPY --chown=$NB_UID:$NB_GID bashrc /etc/bash.bashrc RUN chown -R root:root /root && chmod o-w /tmp && chmod 644 /etc/bash.bashrc -RUN mkdir -p /mnt/JUDAC && chown ${NB_UID}:${NB_GID} /mnt/JUDAC +RUN mkdir -p /mnt/JUST_HOMEs_readonly && chown ${NB_UID}:${NB_GID} /mnt/JUST_HOMEs_readonly +RUN mkdir -p /mnt/JUST_HOMEs && chown ${NB_UID}:${NB_GID} /mnt/JUST_HOMEs +RUN mkdir -p /mnt/JUST_PROJECTs_readonly && chown ${NB_UID}:${NB_GID} /mnt/JUST_PROJECTs_readonly +RUN mkdir -p /mnt/JUST_PROJECTs && chown ${NB_UID}:${NB_GID} /mnt/JUST_PROJECTs RUN mkdir -p /mnt/B2DROP && usermod -aG davfs2 jovyan && echo "https://b2drop.eudat.eu/remote.php/webdav /mnt/B2DROP davfs user,rw,noauto 0 0" >> /etc/fstab && chmod u+s /usr/sbin/mount.davfs && chown ${NB_UID}:${NB_GID} /mnt/B2DROP -USER jovyan +#USER jovyan diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1e94d02 --- /dev/null +++ b/LICENSE @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2020, FZJ-JSC +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- GitLab