remote update

This commit is contained in:
Dongho Kim
2025-11-27 22:04:36 +09:00
parent cf88a953f2
commit 70da537ade
2 changed files with 10 additions and 1 deletions

2
.env
View File

@@ -16,5 +16,5 @@ CLIENT_PORT=8080
SERVICE_LOG_LEVEL=debug SERVICE_LOG_LEVEL=debug
HOST_PBF_PATH=./oberbayern-251125.osm.pbf HOST_PBF_PATH=../maps_data/europe-latest.osm.pbf
HOST_CACHE_DIR=./cache HOST_CACHE_DIR=./cache

9
run-remote.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/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