OrbitalBeat/scripts/add.sh
2022-01-16 11:07:35 +01:00

12 lines
283 B
Bash
Executable file

#!/bin/bash
source .env
DIR="${DATA_MOUNT_PATH}"
if [[ "$1" != "" ]]; then
DIR="$1"
fi
find "${DIR}" -type f | docker-compose run --rm srg -format postgres -pg_table entries -pg_mode insert_binary -pg_connstr "user=orbeat password=orbeat dbname=orbeat sslmode=disable host=db"