From a7ee293ab4e2100bc9913923586e8db2364a35cb Mon Sep 17 00:00:00 2001 From: TAFKAMW Date: Wed, 15 Nov 2023 17:54:45 +0100 Subject: [PATCH] Updated docker-compose.yml: replaced broken images with latest Fixed issues: https://github.com/wso2/docs-apim/issues/7405 https://github.com/wso2/samples-apim/issues/118 The docker-compose.yml contained references to 3 images with version '4.1.0'. However, those images don't exist (anymore?). Therefore I updated these 3 references to point to version 'latest'. At this moment this will effectively result in version '4.0.0' being downloaded. --- apim-tutorial/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apim-tutorial/docker-compose.yml b/apim-tutorial/docker-compose.yml index 9a95b93d4..634cfdd46 100644 --- a/apim-tutorial/docker-compose.yml +++ b/apim-tutorial/docker-compose.yml @@ -1,7 +1,7 @@ version: '2.4' services: api-manager: - image: wso2/wso2am:4.1.0 + image: wso2/wso2am:latest healthcheck: test: ["CMD", "nc", "-z","localhost", "9443"] interval: 10s @@ -24,7 +24,7 @@ services: build: context: ./dockerfiles/micro-integrator/ args: - - BASE_IMAGE=wso2/wso2mi:4.1.0 + - BASE_IMAGE=wso2/wso2mi:latest healthcheck: test: ["CMD", "nc", "-z","localhost", "8290"] interval: 10s @@ -51,7 +51,7 @@ services: build: context: ./dockerfiles/streaming-integrator/ args: - - BASE_IMAGE=wso2/wso2si:4.1.0 + - BASE_IMAGE=wso2/wso2si:latest healthcheck: test: ["CMD", "nc", "-z","localhost", "9443"] interval: 10s