Skip to content
Snippets Groups Projects
Commit 284a927f authored by Tim Kreuzer's avatar Tim Kreuzer
Browse files

add mount folders, run as root (start script ensures JupyterLab is running as jovyan)

parent ed268c45
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,10 @@ RUN wget -O /tmp/libssl1.0.0.deb http://security.ubuntu.com/ubuntu/pool/main/o/o ...@@ -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 WORKDIR /home/$NB_USER
COPY --chown=$NB_UID:$NB_GID bashrc /etc/bash.bashrc 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 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 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
LICENSE 0 → 100644
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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment