git clone git@github.com:AlanACruz/Python-Prototypes.git ~/git/Python-Prototypes
https://github.com/AlanACruz/DevSecOps/blob/master/docker/Install-Docker-On-Chromebook.md
docker build \
--no-cache \
-t python-prototypes \
~/git/Python-Prototypes
docker run \
-i \
-t \
--rm \
-v ~/git:/root/git/:Z \
python-prototypes:latest \
/bin/bash
docker run \
-i \
-t \
--rm \
-p 8888:8888 \
-v ~/git:/root/git/:Z \
python-prototypes \
/bin/bash -c "jupyter notebook \
--notebook-dir=~/git \
--ip='*' \
--port=8888 \
--no-browser \
--allow-root"
~/git/Python-Prototypes/run-tests.sh