예제 #1
0
파일: watcher.py 프로젝트: sullivg2/docrane
    def watch(self):
        """
        Update image list every so often
        """
        while True:
            self.images = util.get_docker_images()

            sleep(120)
예제 #2
0
파일: watcher.py 프로젝트: NoYiBa/docrane
    def watch(self):
        """
        Update image list every so often
        """
        while True:
            self.images = util.get_docker_images()

            sleep(120)
예제 #3
0
파일: watcher.py 프로젝트: sullivg2/docrane
 def __init__(self):
     # Make sure to pre-populate so we always have images
     self.images = util.get_docker_images()
예제 #4
0
파일: watcher.py 프로젝트: NoYiBa/docrane
 def __init__(self):
     # Make sure to pre-populate so we always have images
     self.images = util.get_docker_images()