mirror of
https://github.com/MetaCubeX/subconverter.git
synced 2025-09-26 23:09:20 +08:00
15 lines
499 B
Python
15 lines
499 B
Python
import glob
|
|
import os, sys
|
|
|
|
MAIN_IMAGE_NAME="tindy2013/subconverter"
|
|
TARGET_TAG="latest" if len(sys.argv) < 2 else sys.argv[1]
|
|
|
|
args=["docker manifest create {}:{}".format(MAIN_IMAGE_NAME, TARGET_TAG)]
|
|
for i in glob.glob("/tmp/images/*/*.txt"):
|
|
with open(i, "r") as file:
|
|
args += " --amend {}@{}".format(MAIN_IMAGE_NAME, file.readline().strip())
|
|
cmd_create="".join(args)
|
|
cmd_push="docker manifest push {}:{}".format(MAIN_IMAGE_NAME, TARGET_TAG)
|
|
os.system(cmd_create)
|
|
os.system(cmd_push)
|