File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
examples/docker-compose/notebook
images/docker-stacks-foundation Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
6
6
7
7
# Setup environment
8
- # shellcheck disable=SC1091
8
+ # shellcheck source=examples/docker-compose/notebook/env.sh
9
9
source " ${DIR} /env.sh"
10
10
11
11
# Build the notebook image
Original file line number Diff line number Diff line change 5
5
DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
6
6
7
7
# Setup environment
8
- # shellcheck disable=SC1091
8
+ # shellcheck source=examples/docker-compose/notebook/env.sh
9
9
source " ${DIR} /env.sh"
10
10
11
11
# Bring down the notebook container, using container name as project name
Original file line number Diff line number Diff line change 58
58
fi
59
59
60
60
# Setup environment
61
- # shellcheck disable=SC1091
61
+ # shellcheck source=examples/docker-compose/notebook/env.sh
62
62
source " ${DIR} /env.sh"
63
63
64
64
# Create a Docker volume to store notebooks
Original file line number Diff line number Diff line change 46
46
47
47
48
48
# NOTE: This hook will run as the user the container was started with!
49
- # shellcheck disable=SC1091
49
+ # shellcheck source=images/docker-stacks-foundation/run-hooks.sh
50
50
source /usr/local/bin/run-hooks.sh /usr/local/bin/start-notebook.d
51
51
52
52
# If the container started as the root user, then we have permission to refit
@@ -150,7 +150,7 @@ if [ "$(id -u)" == 0 ]; then
150
150
fi
151
151
152
152
# NOTE: This hook is run as the root user!
153
- # shellcheck disable=SC1091
153
+ # shellcheck source=images/docker-stacks-foundation/run-hooks.sh
154
154
source /usr/local/bin/run-hooks.sh /usr/local/bin/before-notebook.d
155
155
unset_explicit_env_vars
156
156
251
251
fi
252
252
253
253
# NOTE: This hook is run as the user we started the container as!
254
- # shellcheck disable=SC1091
254
+ # shellcheck source=images/docker-stacks-foundation/run-hooks.sh
255
255
source /usr/local/bin/run-hooks.sh /usr/local/bin/before-notebook.d
256
256
unset_explicit_env_vars
257
257
You can’t perform that action at this time.
0 commit comments