Skip to content

TACC/designsafe-notebook-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DesignSafe-Cyberinfrastructure Notebook Images

Summary

This repository includes the DesignSafe-Cyberinfrastructure's Jupyter notebook images deployed via the site's JupyterHub.

Useful Syntax

Build

docker build . -t <user>/<repo>:<tag>

# for example
docker build . -t jpvantassel/ds-nb-img:base-0.1.0

Push

docker push <user>/<repo>:<tag>

# for example
docker push jpvantassel/ds-nb-img:base-0.1.0

Run

Local

docker run --rm -p 8888:8888 --user=jovyan -e JUPYTER_ENABLE_LAB=yes <user>/<repo>:<tag>

# for example
docker run --rm -p 8888:8888 --user=1824 -e JUPYTER_ENABLE_LAB jpvantassel/ds-nb-img:base-0.1.0

Notes