Update 'docker_update.py'
This commit is contained in:
parent
dea05505de
commit
9642071b41
@ -21,11 +21,11 @@ for line in lines:
|
||||
if s.startswith("#"):
|
||||
continue
|
||||
fullpath = os.path.join(path, s)
|
||||
if os.path.isdir(fullpath) and ("docker-compose.yml" in os.listdir(fullpath)):
|
||||
fullpath = os.path.join(fullpath, "docker-compose.yml")
|
||||
if os.path.isdir(fullpath) and ("docker compose.yml" in os.listdir(fullpath)):
|
||||
fullpath = os.path.join(fullpath, "docker compose.yml")
|
||||
print("========= Processing " + fullpath + " =========")
|
||||
print(subprocess.check_output("docker-compose -f " + fullpath + " pull", shell=True, stderr=subprocess.STDOUT).decode())
|
||||
print(subprocess.check_output("docker-compose -f " + fullpath + " up -d", shell=True, stderr=subprocess.STDOUT).decode())
|
||||
print(subprocess.check_output("docker compose -f " + fullpath + " pull", shell=True, stderr=subprocess.STDOUT).decode())
|
||||
print(subprocess.check_output("docker compose -f " + fullpath + " up -d", shell=True, stderr=subprocess.STDOUT).decode())
|
||||
else:
|
||||
print("========= Skipping " + fullpath + ": invalid dir or docker-compos.yml =========")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user