Adding password config at tail

This commit is contained in:
Christoph Schranz 2020-02-26 08:06:49 +01:00
parent fd7ef5a864
commit 079fcb5ac5
3 changed files with 6 additions and 2 deletions

@ -1 +1 @@
Subproject commit 63d0df23b673f57a622ff78d29e8660e32d08850
Subproject commit c1c32938438151c7e2a22b5aa338caba2ec01da2

View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
cd $(cd -P -- "$(dirname -- "$0")" && pwd -P)
./add-to-swarm.sh -p 8848 -n elk_datastack -r 5001

View File

@ -14,7 +14,6 @@ cd $STACKS_DIR && git pull && cd -
# Write the contents into the DOCKERFILE and start with the header
cat src/Dockerfile.header > $DOCKERFILE
cp src/jupyter_notebook_config.json .build/
echo "
############################################################################
@ -73,6 +72,7 @@ cat src/Dockerfile.usefulpackages >> $DOCKERFILE
# Copy the demo notebooks and change permissions
cp -r extra/Getting_Started data
chmod -R 755 data/
cp src/jupyter_notebook_config.json .build/
#cp $(find $(dirname $DOCKERFILE) -type f | grep -v $STACKS_DIR | grep -v .gitkeep) .
echo "GPU Dockerfile was generated sucessfully in file ${DOCKERFILE}."