fix: pass OSRM_URL from root .env into estore container

env_file only reads estore/.env; the root .env value wasn't reaching
the container. Wiring it through compose environment: fixes this.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chris 2026-05-05 16:40:53 -04:00
parent c240ec4ce6
commit 134705792c

View File

@ -75,6 +75,8 @@ services:
expose:
- "3000"
env_file: ./estore/.env
environment:
OSRM_URL: ${OSRM_URL} # injected from root .env; overrides estore/.env
volumes:
- ./estore/data:/app/data
restart: unless-stopped