Initial commit of run.sh
This commit is contained in:
parent
274a128278
commit
c289245bce
1 changed files with 11 additions and 0 deletions
11
run.sh
Normal file
11
run.sh
Normal 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 "$@"
|
Loading…
Add table
Reference in a new issue