From 72e1b8ed599b97fb9350c644eec8fa26ae5975e2 Mon Sep 17 00:00:00 2001 From: Croft Date: Thu, 2 Jun 2022 14:21:11 +0200 Subject: [PATCH] Responses to suggestions, 1 new fix Two suggestions have been implemented and tested, namely, changing the Postgres version to 10 and changing the Traefik version to "latest". A further changes was necessary, because in: https://github.com/samply/share-client/blob/feature/environmentPreconfiguration/Dockerfile under "Stage used by ci for gbn images", STORE_URL is: http://bridgehead-gbn-blaze-store:8080 To make this work, I also needed to change the container name for Blaze in docker-compose.yml for GBN. --- gbn/docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gbn/docker-compose.yml b/gbn/docker-compose.yml index 6f811e7..9018205 100644 --- a/gbn/docker-compose.yml +++ b/gbn/docker-compose.yml @@ -10,7 +10,7 @@ volumes: services: traefik: container_name: bridgehead-traefik - image: traefik:2.4 + image: traefik:latest command: - --entrypoints.web.address=:80 - --entrypoints.websecure.address=:443 @@ -59,7 +59,7 @@ services: blaze: image: "samply/blaze:0.17" - container_name: bridgehead-gbn-blaze + container_name: bridgehead-gbn-blaze-store environment: BASE_URL: "http://blaze:8080" JAVA_TOOL_OPTIONS: "-Xmx4g" @@ -94,7 +94,7 @@ services: gbn-connector-db: container_name: bridgehead-gbn-connector-db - image: "postgres:10.17" + image: "postgres:10" container_name: "bridgehead-gbn-connector-db" environment: POSTGRES_DB: "samply.connector"