-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Description
README instructs running docker compose up --build, but there is no root-level docker-compose.yml, so the command fails.
Steps to Reproduce
Clone the repo.
From the repo root, run docker compose up --build.
See error about missing compose file.
Expected Behavior
docker compose up --build should start the services as documented.
Actual Behavior
Docker Compose fails because it cannot find a compose file at the repository root.
Environment Information
OS: Linux
Node.js Version: N/A
Service: N/A (root docs/compose)
Branch: main
Error Logs or Stack Trace
Screenshots or Videos
N/A
Additional Context
The repo provides docker-compose.dev.yml and docker-compose.yml, but the README does not reference either.
Possible Solution (Optional)
Update the README to specify the correct compose file, e.g. docker compose -f docker-compose.dev.yml up --build, or add a root docker-compose.yml.