Initial commit of run.sh

This commit is contained in:
XANTRONIX Industrial 2025-02-12 09:55:46 -05:00
parent 274a128278
commit c289245bce

11
run.sh Normal file
View file

@ -0,0 +1,11 @@
#! /bin/sh
reports_csv_gz="$(realpath "$1")"
dest="$(realpath "$2")"
shift 2
docker run --rm -it \
--volume "$reports_csv_gz:/tmp/reports.csv.gz" \
--volume "$dest:/dest" \
nexrad-archive:latest /tmp/reports.csv.gz /dest "$@"