#!/usr/bin/env python3

import os
import sys
from tuxmake.runtime import DockerRuntime


project = os.getenv("PROJECT", "tuxmake")
runtime = DockerRuntime()
for image in runtime.images:
    if image.name == sys.argv[1]:
         print(" ".join([f"{project}/{image.name}:latest-{host}" for host in image.hosts]))
