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:BaseAddress=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"