File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -85,18 +85,18 @@ def pruneVolumes():
85
85
86
86
def updateAllContainers ():
87
87
print ("Update All Containers:" )
88
- print ("docker-compose down" )
89
- subprocess .call ("docker-compose down" , shell = True )
90
- print ("" )
91
88
print ("docker-compose pull" )
92
89
subprocess .call ("docker-compose pull" , shell = True )
93
90
print ("" )
94
- print ("docker-compose build" )
95
- subprocess .call ("docker-compose build" , shell = True )
91
+ print ("docker-compose build --no-cache --pull " )
92
+ subprocess .call ("docker-compose build --no-cache --pull " , shell = True )
96
93
print ("" )
97
94
print ("docker-compose up -d" )
98
95
subprocess .call ("docker-compose up -d" , shell = True )
99
96
print ("" )
97
+ print ("docker system prune -f" )
98
+ subprocess .call ("docker system prune -f" , shell = True )
99
+ print ("" )
100
100
input ("Process terminated. Press [Enter] to show menu and continue." )
101
101
needsRender = 1
102
102
return True
You can’t perform that action at this time.
0 commit comments