Reputation: 49
I am in the installation process WSO2 tool regarding: https://wso2.com/api-management/install/docker-compose/get-started/
Getting the following error:
On command: docker-compose up --build
Sending build context to Docker daemon 790B
Step 1/4 : FROM docker.wso2.com/wso2am:4.0.0.0
Sending build context to Docker daemon 3.451kB
Step 1/3 : FROM docker.wso2.com/wso2mi:4.0.0.0
2 errors occurred:
* Status: pull access denied for docker.wso2.com/wso2am, repository does not exist or may require 'docker login': denied: requested access to the resource is denied, Code: 1
* Status: pull access denied for docker.wso2.com/wso2mi, repository does not exist or may require 'docker login': denied: requested access to the resource is denied, Code: 1
Any idea how can I pass this step?
Upvotes: 3
Views: 752
Reputation: 1410
You need a WSO2 Subscription to access the internal docker repository (i.e. docker.wso2.com). However, as a workaround, you can set the base image in the relevant Dockerfiles to the publicly available GA image.
For example, if you plan to run docker-compose for apim-with-analytics, update [1] to
FROM wso2/wso2am:4.0.0
This will pull the GA image from the public repository. Please note that this won't have any post release updates.
Upvotes: 4