Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Why make this change? - The docker command in the docs has an incorrect `pull` verb where the image name is expected. - With the incorrect command, we see the following error message: > > `Unable to find image 'pull:latest' locally > docker: Error response from daemon: pull access denied for pull, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. > See 'docker run --help'.` ## What is this change? - remove the incorrect verb so the correct image gets pulled. ## How was this tested? - Manually tested on a fresh machine, by running the fixed command to verify the correct image is downloaded and the engine is successfully running. ``` PS > docker run -it -v "c:\Users\anmunde\Documents:/App/samples" -p 5000:5000 mcr.microsoft.com/azure-databases/data-api-builder:0.5.34 --ConfigFileName ./samples/dab.storedproc.json Unable to find image 'mcr.microsoft.com/azure-databases/data-api-builder:0.5.34' locally 0.5.34: Pulling from azure-databases/data-api-builder 3f9582a2cbe7: Pull complete 80b88e0117ce: Pull complete 2d43258c565c: Pull complete 9ab259e76745: Pull complete 144ef4f6c4b8: Pull complete 08c6d9bfa585: Pull complete Digest: sha256:75f1877b20af094d8b024cce64ddd4739ff2007e118564face72e0fb3d417788 Status: Downloaded newer image for mcr.microsoft.com/azure-databases/data-api-builder:0.5.34 Starting the runtime engine... ```
- Loading branch information