elsa-core/docker/docker-compose.yaml
Sipke Schoorstra 0b98dca4bf Update docker-compose.yaml
Fixes #2623
2021-12-23 10:38:15 +01:00

28 lines
825 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:linux-amd64-3.1.0-ci0856
container_name: elsa-smtp4dev
ports:
- "3000:80"
- "2525:25"