Files
maps/run-remote.sh
2025-11-27 22:04:36 +09:00

10 lines
324 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
docker compose -f docker-compose-remote.yml build --no-cache