We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example in README.md is missing a mapping of the openactive-broker-microservice output folder (to ensure that validator output is accessible).
openactive-broker-microservice
docker run -it \ -e INPUT_CONFIG=/config/dev.json \ -e NODE_ENV=dev \ -p 3000:3000 \ -v ${PWD}/config:/config \ -v ${PWD}/packages/openactive-integration-tests/output:/openactive-test-suite/packages/openactive-integration-tests/output \ ghcr.io/openactive/test-suite:latest \ -- core
should be
docker run -it \ -e INPUT_CONFIG=/config/dev.json \ -e NODE_ENV=dev \ -p 3000:3000 \ -v ${PWD}/config:/config \ -v ${PWD}/packages/openactive-integration-tests/output:/openactive-test-suite/packages/openactive-integration-tests/output \ -v ${PWD}/packages/openactive-broker-microservice/output:/openactive-test-suite/packages/openactive-broker-microservice/output \ ghcr.io/openactive/test-suite:latest \ -- core
And other parts of the document that reference the mapping should also be updated.
This should be tested too.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example in README.md is missing a mapping of the
openactive-broker-microservice
output folder (to ensure that validator output is accessible).should be
And other parts of the document that reference the mapping should also be updated.
This should be tested too.
The text was updated successfully, but these errors were encountered: