* Upgrade all projects to .NET6.0 * Add compatibility NET5.0 * Add compatibility NET Core 3.1 * Update appveyor.yml * Update packages * Update src/activities/Elsa.Activities.Http/Elsa.Activities.Http.csproj Remove common Authorization package * Update src/activities/Elsa.Activities.Http/Elsa.Activities.Http.csproj reimplement fix for #1568 * reimplement fix for #1611 * add missing .netcoreapp3.1 references to persistence packages * fix Jint reference * change samples and tests to target .NET 6 * cleanup multi-targeting conditions in samples/tests * revert Elsa and Elsa.Temporal.Common to .netstandard2.1 only * Update docker files to use net6.0 SDK * Fix docker poor performance on arm64 * Update Elsa.sln * Update Elsa.Activities.RabbitMq.csproj Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com> Co-authored-by: Mohamed Ali <antivirus.cs@gmail.com>
28 lines
820 B
YAML
28 lines
820 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
|
|
elsa-dashboard:
|
|
build:
|
|
context: ../
|
|
dockerfile: ./docker/Dockerfile-elsa-dashboard-and-server
|
|
image: elsadashboardwithserver:latest
|
|
# Use the below image if you do not like to build the image yourself
|
|
# image: ghcr.io/elsa-workflows/elsa-core/elsa-dashboard:latest
|
|
container_name: elsa-dashboard-with-server
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- Elsa:Server:BaseUrl=http://localhost:6868
|
|
- Elsa:Smtp:Host=smtp4dev
|
|
ports:
|
|
- "6868:80"
|
|
depends_on:
|
|
- smtp4dev
|
|
|
|
smtp4dev:
|
|
image: rnwood/smtp4dev:3.1.3-ci20211206101
|
|
container_name: elsa-smtp4dev
|
|
ports:
|
|
- "3000:80"
|
|
- "2525:25"
|