mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00

* Create base-jupyter from base-notebook for non-server jupyter applications * Fix pre-commit errors and begin test refactoring * More test refactoring * Add base-jupyter to images_hierarchy * Use folder work instead of .jupyter in nb-user test * Add base-jupyter to tagging hierarchy * Linting: trailing comma * Apply review comments, remove obsolute Miniforge reference * Add self-signed cert comment back to base-notebook doc * Update docs/using/selecting.md Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> * Remove redundant apt-get upgrade per review * Remove b/c approaches per review * Move test_nb_user_change back to base-notebook tests, per review * fix linting * Rename base-jupyter to docker-stacks-foundation, per review * Rename tests/base-jupyter to docker-stacks-foundation * Use alphabetical order * Use alphabetical order * Fix markdown style * Split test_nb_user_change between the foundation and base tests Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com>
36 lines
1.0 KiB
Bash
Executable File
36 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# set permissions on a directory
|
|
# after any installation, if a directory needs to be (human) user-writable,
|
|
# run this script on it.
|
|
# It will make everything in the directory owned by the group ${NB_GID}
|
|
# and writable by that group.
|
|
# Deployments that want to set a specific user id can preserve permissions
|
|
# by adding the `--group-add users` line to `docker run`.
|
|
|
|
# uses find to avoid touching files that already have the right permissions,
|
|
# which would cause massive image explosion
|
|
|
|
# right permissions are:
|
|
# group=${NB_GID}
|
|
# AND permissions include group rwX (directory-execute)
|
|
# AND directories have setuid,setgid bits set
|
|
|
|
set -e
|
|
|
|
for d in "$@"; do
|
|
find "${d}" \
|
|
! \( \
|
|
-group "${NB_GID}" \
|
|
-a -perm -g+rwX \
|
|
\) \
|
|
-exec chgrp "${NB_GID}" -- {} \+ \
|
|
-exec chmod g+rwX -- {} \+
|
|
# setuid, setgid *on directories only*
|
|
find "${d}" \
|
|
\( \
|
|
-type d \
|
|
-a ! -perm -6000 \
|
|
\) \
|
|
-exec chmod +6000 -- {} \+
|
|
done
|