#!/bin/sh
port=17777
host=host
umask 0002
jupyter lab \
--NotebookApp.notebook_dir='.' \
--NotebookApp.open_browser=False \
--NotebookApp.ip='*' \
--NotebookApp.port=$port \
--NotebookApp.token='' \
--NotebookApp.password='' &
ssh -nNT -R $port:localhost:$port $host