The "Docker" section of README.md shows a Dockerfile with rust:1.75-slim-bookworm, port 8080, binary stellarsend, and a compose file with full env var documentation — but the real Dockerfile uses rust:1.78-slim, exposes port 3000, and produces binary stellarsend-backend; the real docker-compose.yml only sets DATABASE_URL and STELLAR_NETWORK (missing JWT_SECRET, HORIZON_URL, etc., so the app would fail Config::from_env() on startup).
Reconcile the docs with the real files so docker-compose up actually works as documented.
The "Docker" section of
README.mdshows a Dockerfile withrust:1.75-slim-bookworm, port 8080, binarystellarsend, and a compose file with full env var documentation — but the realDockerfileusesrust:1.78-slim, exposes port 3000, and produces binarystellarsend-backend; the realdocker-compose.ymlonly setsDATABASE_URLandSTELLAR_NETWORK(missingJWT_SECRET,HORIZON_URL, etc., so the app would failConfig::from_env()on startup).Reconcile the docs with the real files so
docker-compose upactually works as documented.