docker update script

This commit is contained in:
quackerd 2022-06-19 22:13:09 -04:00
parent 7b5608ef9e
commit 2e4a5147cb

View File

@ -1,6 +1,8 @@
import os
import sys
from numpy import full
if len(sys.argv) != 3:
print("Invalid number of arguments\n")
exit(1)
@ -11,19 +13,17 @@ 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)
fullpath = os.path.join(path, s)
if os.path.isdir(fullpath) and "docker-compose.yml" in os.listdir(fullpath):
print("========= Processing " + fullpath + " =========")
os.system("docker-compose -f " + fullpath + " pull")
os.system("docker-compose -f " + fullpath + " up -d")
else:
print("========= Skipping " + fullpath + ": invalid dir or docker-compos.yml =========")
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")