Files
autogen/.devcontainer/docker-compose.yml
Kosta Petan e9a7a07e13 Dapr implementation (#47)
* replace Event to CloudEvent WIP

* switch to CloudEvents

* dapr implementation WIP

* fix namespaces and dapr sdk weirdness

* WIP

* dapr support WIP

* dapr WIP

* dapr WIP

* dapr semi-working implementation

* fix mapping  bug

* dapr reminders in sandbox

* fix prompts

* merge almost done

* switch to Newtnsoft serialization for Marketing

* add event surogate for Orleans serialization

* remove newtnsoft serialization (not needed)

* cleanup appsettings in marketing sample
2024-05-14 14:18:24 +02:00

30 lines
713 B
YAML

version: '3.8'
services:
devcontainer:
build:
context: .
dockerfile: Dockerfile
init: true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ..:/workspace:cached
# Overrides default command so things don't shut down after the process ends.
command: sleep infinity
network_mode: service:qdrant
depends_on:
- qdrant
qdrant:
image: qdrant/qdrant
ports:
- 6333:6333
redis:
image: redis:alpine
network_mode: service:qdrant
zipkin:
image: openzipkin/zipkin-slim:latest
ports:
- 9411:9411
dapr-placement:
image: "daprio/dapr"
command: ["./placement", "--port", "50005"]
network_mode: service:qdrant