diff options
author | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2021-04-13 12:32:35 +0200 |
---|---|---|
committer | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2021-04-13 11:04:53 +0000 |
commit | 34334a1b8111d1ae989719f3df7b9cad063e213d (patch) | |
tree | 9f15f90075b1d39851b7bcb8976d429ed9366f72 | |
parent | 160f0749dc42f7e3c9bba93e6e42550eeccf0c6c (diff) |
Update docker-compose.
environment variable have to be name "REST_CLIENT_PNFSIMULATOR_ENDPOINT"
due to fact it is referred be application.properties as
"rest.client.pnfsimulator.endpoint". Changing this name requires
changes in code.
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
Change-Id: Ic28d45eaebf40d58ca6179926e4c179224c0891d
Issue-ID: INT-1869
-rw-r--r-- | docker-compose.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 29fa3c4..6010f1a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,4 @@ -version: '3' +version: '3.5' services: @@ -15,7 +15,7 @@ services: KAFKA_BOOTSTRAP_SERVERS: avcn-kafka:9092 KAFKA_SOURCE_TOPIC: config KAFKA_APPLICATION_ID: avcn-manager - REST_CLIENT_VESCLIENT_ENDPOINT: http://ves-client:5000/simulator/start + REST_CLIENT_PNFSIMULATOR_ENDPOINT: http://ves-client:5000/simulator/start depends_on: - avcn-kafka |