Workin on it

This commit is contained in:
Salt 2025-02-12 01:06:07 -06:00
parent e01d6cd030
commit 51aa2bacb8
2 changed files with 21 additions and 0 deletions

17
bulkbuild.py Executable file

@ -0,0 +1,17 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2025 Jacob Babor <jacob@babor.tech>
#
# Distributed under terms of the MIT license.
import argparse
def main():
parser = argparse.ArgumentParser(description="Build a bunch of Docker containers from a bunch of repos in bulk")
parser.add_argument('yamlfile',help="Path to a YAML file that contains the repos to download and build from. See README.md for details")
args = parser.parse_args()
pass
main()

4
repos.yml Normal file

@ -0,0 +1,4 @@
# repos.yml
#
---