Closed a44281071 closed 1 year ago
Hi @a44281071, this is expected behavior. Currently we don't bundle zipkin/redis containers in daprbundle to avoid dependency on these third party packages. Since the containers ain't there, corresponding component yaml files are also removed from .dapr/components
folder.
For downloading zipkin/redis, you can pull them manually:
1. docker run --name "dapr_zipkin" --restart always -d -p 9411:9411 openzipkin/zipkin
2. docker run --name "dapr_redis" --restart always -d -p 6379:6379 redislabs/rejson
And the component files need to be created manually as well.
Hi @a44281071, this is expected behavior. Currently we don't bundle zipkin/redis containers in daprbundle to avoid dependency on these third party packages. Since the containers ain't there, corresponding component yaml files are also removed from
.dapr/components
folder.For downloading zipkin/redis, you can pull them manually:
1. docker run --name "dapr_zipkin" --restart always -d -p 9411:9411 openzipkin/zipkin 2. docker run --name "dapr_redis" --restart always -d -p 6379:6379 redislabs/rejson
And the component files need to be created manually as well.
It does require an update in the README describing the same, will do.
Closed by #18
OS: windows 10 docker: windows docker-desktop dapr: daprbundle_windows_amd64.zip
Result of
init --from-dir
: