-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker_setup.sh
More file actions
executable file
·23 lines (21 loc) · 881 Bytes
/
Copy pathdocker_setup.sh
File metadata and controls
executable file
·23 lines (21 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
docker pull atbigdawg:5000/fcollman/render-python:latest
docker tag atbigdawg:5000/fcollman/render-python:latest fcollman/render-python:latest
docker build -t fcollman/render-python-apps .
docker tag fcollman/render-python-apps atbigdawg:5000/fcollman/render-python-apps
docker push atbigdawg:5000/fcollman/render-python-apps
docker kill renderapps
docker rm renderapps
docker run -t --name renderapps \
-v /nas:/nas \
-v /nas2:/nas2 \
-v /nas3:/nas3 \
-v /nas4:/nas4 \
-v /data:/data \
-v /pipeline:/pipeline \
-v /pipeline/render-python-apps:/usr/local/render-python-apps \
-v /etc/hosts:/etc/hosts \
--dns 10.128.104.10 \
-p 8888:8888 \
-e "PASSWORD=$JUPYTERPASSWORD" \
-i -t fcollman/render-python-apps \
/bin/bash -c "/opt/conda/bin/jupyter notebook --config=/root/.jupyter/jupyter_notebook_config.py --notebook-dir=/pipeline/render-python-apps --no-browser --allow-root"