Files
maps/run.sh
2025-11-27 13:56:41 +01:00

9 lines
265 B
Bash

#!/bin/bash
# Load .env variables
if [ -f .env ]; then
export $(cat .env | grep -v '#' | awk '/=/ {print $1}')
fi
echo "Using PBF file: ${HOST_PBF_PATH:-./europe-latest.osm.pbf}"
docker compose --profile import up --build importer
docker compose build --no-cache