Aram Khachatrian
Aram Khachatrian

Reputation: 49

WSO2 Installation

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

Answers (1)

RrR-
RrR-

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.

[1]- https://github.com/wso2/docker-apim/blob/master/docker-compose/apim-with-analytics/dockerfiles/apim/Dockerfile#L20

Upvotes: 4

Related Questions