Skip to content
Snippets Groups Projects
Commit 740d6fd4 authored by Emmanuel Bruno's avatar Emmanuel Bruno
Browse files

fixes build scripts : docker image name.

parent 3a31c8bc
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash
REGISTRY=brunoe REGISTRY=brunoe
IMAGE_NAME=jupyterjava IMAGE_NAME=${PWD##*/}
CURRENT=`pwd` CURRENT=`pwd`
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
......
...@@ -4,7 +4,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" ...@@ -4,7 +4,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
. ${DIR}/env.sh . ${DIR}/env.sh
docker run --rm \ docker run --rm \
--name jupyterjava_${PWD##*/} \ --name ${PWD##*/} \
--volume $PWD/notebooks:/home/jovyan/work \ --volume $PWD/notebooks:/home/jovyan/work \
--publish 8888:8888 \ --publish 8888:8888 \
--env NB_UID=$UID \ --env NB_UID=$UID \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment