We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c530567 commit 49ea3a6Copy full SHA for 49ea3a6
testcontainers-dapr/src/main/java/io/dapr/testcontainers/WorkflowDashboardContainer.java
@@ -64,10 +64,9 @@ protected void configure() {
64
if (stateStoreComponent != null) {
65
String componentYaml = COMPONENT_CONVERTER.convert(stateStoreComponent);
66
withCopyToContainer(Transferable.of(componentYaml), "/app/components/" + stateStoreComponent.getName() + ".yaml");
67
+ withEnv("COMPONENT_FILE", "/app/components/" + stateStoreComponent.getName() + ".yaml");
68
}
69
- withEnv("COMPONENT_FILE", "/app/components/" + stateStoreComponent.getName() + ".yaml");
70
-
71
72
73
public static DockerImageName getDefaultImageName() {
0 commit comments