Skip to content

Commit

Permalink
fix: remove WEB_HTTP_DSP_PORT & WEB_HTTP_DSP_PATH from docker-compose…
Browse files Browse the repository at this point in the history
….yaml
  • Loading branch information
hamidonos committed Oct 10, 2023
1 parent 80be3f0 commit f9ed324
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions transfer/transfer-04-open-telemetry/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
context: ../..
dockerfile: transfer/transfer-04-open-telemetry/open-telemetry-consumer/Dockerfile
volumes:
- ./:/app/resources
- ./:/resources
ports:
- "9191:9191"
- "9192:9192"
Expand All @@ -25,20 +25,18 @@ services:
WEB_HTTP_PROTOCOL_PATH: /protocol
EDC_DSP_CALLBACK_ADDRESS: http://consumer:9292/protocol
EDC_PARTICIPANT_ID: consumer
WEB_HTTP_DSP_PORT: 9393
WEB_HTTP_DSP_PATH: /protocol
EDC_API_AUTH_KEY: password
entrypoint: java
-javaagent:/app/resources/opentelemetry-javaagent.jar
-Djava.util.logging.config.file=/app/resources/logging.properties
-javaagent:/resources/opentelemetry-javaagent.jar
-Djava.util.logging.config.file=/resources/logging.properties
-jar /app/connector.jar

provider:
build:
context: ../..
dockerfile: transfer/transfer-04-open-telemetry/open-telemetry-provider/Dockerfile
volumes:
- ./:/app/resources
- ./:/resources
ports:
- "8181:8181"
- "8182:8182"
Expand All @@ -55,10 +53,10 @@ services:
WEB_HTTP_PROTOCOL_PATH: /protocol
EDC_DSP_CALLBACK_ADDRESS: http://provider:8282/protocol
EDC_PARTICIPANT_ID: provider
EDC_SAMPLES_TRANSFER_01_ASSET_PATH: /app/resources/README.md
EDC_SAMPLES_TRANSFER_01_ASSET_PATH: /resources/README.md
entrypoint: java
-javaagent:/app/resources/opentelemetry-javaagent.jar
-Djava.util.logging.config.file=/app/resources/logging.properties
-javaagent:/resources/opentelemetry-javaagent.jar
-Djava.util.logging.config.file=/resources/logging.properties
-jar /app/connector.jar

jaeger:
Expand Down

0 comments on commit f9ed324

Please sign in to comment.