mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
* 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
30 lines
713 B
YAML
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 |