Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -488,4 +488,5 @@ $RECYCLE.BIN/
/src/Thor.Service/token.db-wal
/src/Thor.Service/logger.db
/src/Thor.Service/logger.db-shm
/src/Thor.Service/logger.db-wal
/src/Thor.Service/logger.db-wal
/data
8 changes: 7 additions & 1 deletion docker-compose-rabbitmq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ services:
context: .
dockerfile: src/Thor.Service/Dockerfile
container_name: thor
depends_on:
- ai-rabbitmq
- ai-redis
- postgres
volumes:
- ./data:/data
environment:
Expand All @@ -20,6 +24,7 @@ services:
- CACHE_CONNECTION_STRING=ai-redis
- RabbitMQ:ConnectionString=amqp://admin:admin@ai-rabbitmq:5672
- OTEL_SERVICE_NAME=Thor
- OTEL_EXPORTER_OTLP_PROTOCOL=grpc
- OTEL_EXPORTER_OTLP_ENDPOINT=http://aspire-dashboard:18889

postgres:
Expand All @@ -42,10 +47,11 @@ services:
command: redis-server --appendonly yes

aspire-dashboard:
image: mcr.microsoft.com/dotnet/aspire-dashboard:8.1.0
image: mcr.microsoft.com/dotnet/aspire-dashboard:8.2
container_name: aspire-dashboard
ports:
- "4317:18889"
- "18888:18888"
environment:
- TZ=Asia/Shanghai
- Dashboard:ApplicationName=Aspire
Expand Down