Files
maps/run-remote.sh
Dongho Kim afdcf23222 update
2025-11-28 23:25:17 +09:00

9 lines
263 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 -f docker-compose-remote.yml --profile import up --build importer