def bash_on_container_function(self): start_bash = Docker_container().start_container_in_bash(self.cont_id) if start_bash[0] != 0: error_popup = Make_popup("ERROR") error_popup.error(start_bash[1]) else: print(f"started container with id {self.cont_id} in bash")
def rm_image_function(self): if self.rep_tag == "<none>:<none>": self.pop_up = Make_popup("REMOVE IMAGE") self.pop_up.rm_image_popup(self.id, self.reload_image_page) else: self.pop_up = Make_popup("REMOVE IMAGE") self.pop_up.rm_image_popup(self.rep_tag, self.reload_image_page)
def start_stop_container_function(self): start_stop = Docker_container().start_or_stop_containers(self.cont_id) if start_stop[0] != 0: error_popup = Make_popup("ERROR") error_popup.error(start_stop[1]) else: print(f"started/stoped container with id {self.cont_id}") self.reload_container_page()
def image_upload_browse(self, reload): # needs a loading effect while the image is uploaded self.reload = reload # -------- open file exp -------- # filename = askopenfilename(initialdir = "~", title = "Select a .tar File", filetypes = (("docker image tar files", "*.tar*"), ("all files", "*.*"))) if len(filename)==0: pass else: com = Docker_images.load_image(filename) print(com) if com[0]==1: error_popup = Make_popup("ERROR") error_popup.error(com[1]) else: self.reload()
def save_image_function(self): if self.rep_tag == "<none>:<none>": error_popup = Make_popup("ERROR") error_popup.error("ERROR! can't handel none image please remove or use the terminal") else: self.pop_up = Make_popup("SAVE IMAGE TO FILE") self.pop_up.save_image_popup(self.rep_tag, self.reload_image_page)
class Make_image_button(): # ---------------- create __init__ image button ---------------------------------- # def __init__(self, master, dir_to_image): self.master = master self.dir_to_image = dir_to_image self.image = PhotoImage(file=self.dir_to_image) self.button = Button(self.master, image = self.image, cursor="hand2", borderwidth=0) # ---------------- image page buttons -------------------------------------------- # # ---------------- run ------------------------- # def run_image(self, rep_tag, reload_image_page): self.reload_image_page = reload_image_page self.rep_tag = rep_tag self.button.configure(command=self.run_image_function) def run_image_function(self): if self.rep_tag == "<none>:<none>": error_popup = Make_popup("ERROR") error_popup.error("ERROR! can't handel none image please remove or use the terminal") else: self.pop_up = Make_popup("RUN IMAGE") self.pop_up.run_image_popup(self.rep_tag, self.reload_image_page) # ---------------- edit ------------------ # def edit_image(self, rep_tag, reload_image_page): self.reload_image_page = reload_image_page self.rep_tag = rep_tag self.button.configure(command=self.edit_image_function) def edit_image_function(self): if self.rep_tag == "<none>:<none>": error_popup = Make_popup("ERROR") error_popup.error("ERROR! can't handel none image please remove or use the terminal") else: self.pop_up = Make_popup("EDIT IMAGE NAME") self.pop_up.edit_image_popup(self.rep_tag, self.reload_image_page) # ---------------- save ------------------------ # def save_image(self, rep_tag, reload_image_page): self.reload_image_page = reload_image_page self.rep_tag = rep_tag self.button.configure(command=self.save_image_function) def save_image_function(self): if self.rep_tag == "<none>:<none>": error_popup = Make_popup("ERROR") error_popup.error("ERROR! can't handel none image please remove or use the terminal") else: self.pop_up = Make_popup("SAVE IMAGE TO FILE") self.pop_up.save_image_popup(self.rep_tag, self.reload_image_page) # ---------------- remove ---------------------- # def rm_image(self, rep_tag, reload_image_page, id): self.reload_image_page = reload_image_page self.rep_tag = rep_tag self.id = id self.button.configure(command=self.rm_image_function) def rm_image_function(self): if self.rep_tag == "<none>:<none>": self.pop_up = Make_popup("REMOVE IMAGE") self.pop_up.rm_image_popup(self.id, self.reload_image_page) else: self.pop_up = Make_popup("REMOVE IMAGE") self.pop_up.rm_image_popup(self.rep_tag, self.reload_image_page) # ---------------- container page buttons ---------------------------------------- # # ---------------- start stop ------------------ # def start_stop_container(self, cont_id, reload_container_page): self.reload_container_page = reload_container_page self.cont_id = cont_id self.button.configure(command=self.start_stop_container_function) def start_stop_container_function(self): start_stop = Docker_container().start_or_stop_containers(self.cont_id) if start_stop[0] != 0: error_popup = Make_popup("ERROR") error_popup.error(start_stop[1]) else: print(f"started/stoped container with id {self.cont_id}") self.reload_container_page() # ---------------- bash ------------------------ # def bash_on_container(self, cont_id): self.cont_id = cont_id self.button.configure(command=self.bash_on_container_function, state=NORMAL) def bash_on_container_function(self): start_bash = Docker_container().start_container_in_bash(self.cont_id) if start_bash[0] != 0: error_popup = Make_popup("ERROR") error_popup.error(start_bash[1]) else: print(f"started container with id {self.cont_id} in bash") def bash_off_container(self): self.button.configure(command=self.bash_off_container_function, state=DISABLED) def bash_off_container_function(self): pass # ---------------- save ------------------------ # def save_container(self, cont_id, reload_container_page, cont_name): self.reload_container_page = reload_container_page self.cont_id = cont_id self.cont_name = cont_name self.button.configure(command=self.save_container_function) def save_container_function(self): self.pop_up = Make_popup("SAVE CONTAINER TO IMAGE") self.pop_up.save_container_popup(self.cont_id, self.reload_container_page, self.cont_name) # ---------------- remove ---------------------- # def rm_container(self, cont_id, reload_container_page, cont_name): self.reload_container_page = reload_container_page self.cont_id = cont_id self.cont_name = cont_name self.button.configure(command=self.rm_container_function) def rm_container_function(self): self.pop_up = Make_popup("REMOVE CONTAINER") self.pop_up.rm_container_popup(self.cont_id, self.reload_container_page, self.cont_name) # ---------------- placing the image button -------------------------------------- # def place(self, x, y): self.x = x self.y = y self.button.place(x = self.x, y = self.y) def grid(self, col ,row): self.col = col self.row = row self.button.grid(column = self.col, row = self.row)
def rm_container_function(self): self.pop_up = Make_popup("REMOVE CONTAINER") self.pop_up.rm_container_popup(self.cont_id, self.reload_container_page, self.cont_name)
def save_container_function(self): self.pop_up = Make_popup("SAVE CONTAINER TO IMAGE") self.pop_up.save_container_popup(self.cont_id, self.reload_container_page, self.cont_name)