2025-10-22 21:27:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -e
|
|
|
|
|
|
2025-10-22 22:01:28 +02:00
|
|
|
for file in /initdb.d/*.json; do
|
2025-10-22 21:27:41 +02:00
|
|
|
collection=$(basename "$file" .json)
|
|
|
|
|
echo "Importing $collection..."
|
2025-10-22 22:01:28 +02:00
|
|
|
mongoimport --db iut --collection "$collection" --file "$file" --jsonArray
|
2025-10-22 21:27:41 +02:00
|
|
|
done
|