src/config.rs::Config::from_env() requires JWT_SECRET (min 32 chars) and will anyhow::bail! if unset or too short; docker-compose.yml only defines DATABASE_URL and STELLAR_NETWORK for the api service.
Running docker-compose up as-is will cause the api container to panic on startup with "JWT_SECRET must be set". Add all required env vars (JWT_SECRET, HORIZON_URL, STELLAR_NETWORK_PASSPHRASE) to the compose file, ideally sourced from a .env file rather than hardcoded.
src/config.rs::Config::from_env()requiresJWT_SECRET(min 32 chars) and willanyhow::bail!if unset or too short;docker-compose.ymlonly definesDATABASE_URLandSTELLAR_NETWORKfor theapiservice.Running
docker-compose upas-is will cause theapicontainer to panic on startup with "JWT_SECRET must be set". Add all required env vars (JWT_SECRET,HORIZON_URL,STELLAR_NETWORK_PASSPHRASE) to the compose file, ideally sourced from a.envfile rather than hardcoded.