version: '3.7' services: elsa-dashboard: build: context: ../ dockerfile: ./docker/Dockerfile image: elsadashboard: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 environment: - ASPNETCORE_ENVIRONMENT=Development - Elsa:Http:BaseUrl=http://localhost - Elsa:Smtp:Host=smtp4dev - Dashboard:ElsaServerUrl=http://localhost:6868 ports: - "6868:80" depends_on: - smtp4dev smtp4dev: image: rnwood/smtp4dev:latest container_name: elsa-smtp4dev ports: - "3000:80" - "2525:25"