Workin on it
This commit is contained in:
17
bulkbuild.py
Executable file
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
4
repos.yml
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# repos.yml
|
||||||
|
#
|
||||||
|
---
|
||||||
|
|
Reference in New Issue
Block a user