def is_db()

in wadebug/wa_actions/models/wa_container.py [0:0]


    def is_db(self):
        return (
            len(
                [
                    repo_tag
                    for repo_tag in self.image.attrs["RepoTags"]
                    if MYSQL_CONTAINER_TAG in repo_tag
                ]
            )
            > 0
        )