12 lines
327 B
Bash
12 lines
327 B
Bash
#!/bin/bash
|
|
# MTGJSON Import Runner
|
|
# Runs the import script inside the Docker container
|
|
|
|
echo "=== MTGJSON Data Import ==="
|
|
echo ""
|
|
echo "Running import inside Docker container..."
|
|
echo ""
|
|
|
|
# Run the import script inside the Docker container
|
|
sudo -u wall-o docker exec mtgonline_backend python3 /app/scripts/import_mtgdata.py
|