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.
This commit is contained in:
Croft 2022-06-02 14:21:11 +02:00
parent a18e198f21
commit 72e1b8ed59
1 changed files with 3 additions and 3 deletions

View File

@ -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"