mirror of
https://github.com/1C-Company/docker_fresh.git
synced 2025-04-04 21:54:24 +02:00
added images check, fix #5
This commit is contained in:
parent
77f1ea5ebf
commit
8e10073a33
14
install.py
14
install.py
@ -12,6 +12,13 @@ import modules.gate as gate
|
|||||||
class colors:
|
class colors:
|
||||||
GREEN = '\033[92m'
|
GREEN = '\033[92m'
|
||||||
WHITE = '\033[97m'
|
WHITE = '\033[97m'
|
||||||
|
RED = '\033[91m'
|
||||||
|
|
||||||
|
def image_exist(image_name):
|
||||||
|
full_image_name = 'fresh/' + image.name
|
||||||
|
result = subprocess.run(['docker images'], shell=True, stdout=stdout, stderr=stderr)
|
||||||
|
|
||||||
|
return full_image_name in str(result.stdout)
|
||||||
|
|
||||||
images = []
|
images = []
|
||||||
images.append(centos.New())
|
images.append(centos.New())
|
||||||
@ -40,10 +47,13 @@ for image in images:
|
|||||||
if debug: print(command)
|
if debug: print(command)
|
||||||
subprocess.call(' '.join(command), shell=True, stdout=stdout, stderr=stderr)
|
subprocess.call(' '.join(command), shell=True, stdout=stdout, stderr=stderr)
|
||||||
|
|
||||||
|
result = subprocess.run(['docker', 'build', '-t', 'fresh/' + image.name, 'images/' + image.name],
|
||||||
subprocess.run(['docker', 'build', '-t', 'fresh/' + image.name, 'images/' + image.name],
|
|
||||||
stdout=stdout, stderr=stderr)
|
stdout=stdout, stderr=stderr)
|
||||||
|
|
||||||
|
if result.returncode != 0 or not image_exist(image.name):
|
||||||
|
print('Building', image.name , '...', '{}error'.format(colors.RED), colors.WHITE)
|
||||||
|
exit(1)
|
||||||
|
|
||||||
for command in image.commands_after:
|
for command in image.commands_after:
|
||||||
if debug: print(command)
|
if debug: print(command)
|
||||||
subprocess.call(' '.join(command), shell=True, stdout=stdout, stderr=stderr)
|
subprocess.call(' '.join(command), shell=True, stdout=stdout, stderr=stderr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user