Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/startStock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ if [ $HAS_TF -lt 2 ];then
fi

HAS_TF_BASE=`docker images github.com/pythonstock/stock/tensorflow-py3 | wc -l `
if [ $HAS_TF -lt 2 ];then
if [ $HAS_TF_BASE -lt 2 ];then
sh buildBase.sh
fi

HAS_TF_BASE=`docker images github.com/pythonstock/stock/tensorflow-py3-stock | wc -l `
if [ $HAS_TF -lt 2 ];then
HAS_TF_STOCK=`docker images github.com/pythonstock/stock/tensorflow-py3-stock | wc -l `
if [ $HAS_TF_STOCK -lt 2 ];then
sh buildStock.sh
fi

Expand Down