#!/bin/bash set -e dever_start() { jupyter notebook --allow-root --no-browser --notebook-dir=/usr/local/jupyter --port=8888 --ip=* } if [ "$1" = 'start' ]; then dever_start fi exec sh