docker update script
This commit is contained in:
parent
4b5dde0fb1
commit
7b5608ef9e
33
docker_update.py
Normal file
33
docker_update.py
Normal file
@ -0,0 +1,33 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
if len(sys.argv) != 3:
|
||||
print("Invalid number of arguments\n")
|
||||
exit(1)
|
||||
|
||||
path = sys.argv[1]
|
||||
spec_file = sys.argv[2]
|
||||
|
||||
with open(spec_file,"r") as f:
|
||||
lines = f.readlines()
|
||||
|
||||
folders = []
|
||||
|
||||
for line in lines:
|
||||
s = line.strip()
|
||||
folders.add(s)
|
||||
print("Registered folder " + s)
|
||||
|
||||
for f in os.listdir(path):
|
||||
fullpath = os.path.join(path,f)
|
||||
if os.path.isdir(fullpath) and f in folders:
|
||||
print("========= Processing " + fullpath + " =========")
|
||||
os.system("docker-compose -f " + fullpath + " pull")
|
||||
os.system("docker-compose -f " + fullpath + " up -d")
|
||||
|
||||
print("========== CLEANING UP ==========")
|
||||
os.system("docker system prune -af")
|
||||
|
||||
os.system("echo $(date)")
|
||||
os.system("echo \"Docker update finished!\"")
|
||||
os.system("echo \"\"")
|
Loading…
Reference in New Issue
Block a user