elsa-core/docker/docker-compose.yaml

28 lines
825 B
YAML
Raw Normal View History

version: '3.7'
services:
elsa-dashboard:
build:
context: ../
2021-08-24 09:52:45 +00:00
dockerfile: ./docker/Dockerfile-elsa-dashboard-and-server
image: elsadashboardwithserver:latest
2021-04-06 11:48:05 +00:00
# Use the below image if you do not like to build the image yourself
# image: ghcr.io/elsa-workflows/elsa-core/elsa-dashboard:latest
2021-08-24 09:52:45 +00:00
container_name: elsa-dashboard-with-server
environment:
- ASPNETCORE_ENVIRONMENT=Development
2021-12-23 09:38:15 +00:00
- Elsa:Server:BaseUrl=http://localhost:6868
- Elsa:Smtp:Host=smtp4dev
ports:
2021-03-31 12:19:51 +00:00
- "6868:80"
depends_on:
- smtp4dev
smtp4dev:
2021-08-24 09:52:45 +00:00
image: rnwood/smtp4dev:linux-amd64-3.1.0-ci0856
2021-03-31 12:19:51 +00:00
container_name: elsa-smtp4dev
ports:
- "3000:80"
2021-04-06 11:48:05 +00:00
- "2525:25"