File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ test-case: ##@Code Run test case for flask server
127
127
@$(MAKE ) -C test/ all
128
128
129
129
clean : # #@Code Clean tox result
130
- rm -rf .tox .cache * .egg-info
130
+ rm -rf .tox .cache * .egg-info build/
131
131
find . -name " *.pyc" -o -name " __pycache__" -exec rm -rf " {}" \;
132
132
133
133
# TODO (david_dornseier): As long as there are no release versions, always rewrite
@@ -152,10 +152,9 @@ logs: ##@Log tail for all service log
152
152
redeploy : # #@Service Redeploy single service, Use like "make redeploy service=dashboard"
153
153
bash scripts/master_node/redeploy.sh ${service}
154
154
155
- image-clean : # #@Clean all existing images to rebuild
155
+ image-clean : clean # #@Clean all existing images to rebuild
156
156
echo " Clean all cello related images, may need to remove all containers before"
157
- docker images | grep " cello-" | awk ' {print $1}' | xargs docker rmi -f
158
- docker rmi $(docker images -f dangling=true -q )
157
+ docker images | grep " hyperledger/cello-" | awk ' {print $3}' | xargs docker rmi -f
159
158
160
159
initial-env : # #@Configuration Initial Configuration for dashboard
161
160
$(SED ) ' s/\(STATIC_FOLDER=\).*/\1${STATIC_FOLDER}/' .env
You can’t perform that action at this time.
0 commit comments