elsa-core/docker/docker-compose.yaml

28 lines
772 B
YAML
Raw Normal View History

version: '3.7'
services:
elsa-dashboard:
build:
context: ../
dockerfile: ./docker/Dockerfile-with-npm
2021-03-31 12:19:51 +00:00
image: elsadashboard: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-03-31 12:19:51 +00:00
container_name: elsa-dashboard
environment:
- ASPNETCORE_ENVIRONMENT=Development
- Elsa:Server:BaseAddress=http://localhost:6868
- Elsa:Smtp:Host=smtp4dev
ports:
2021-03-31 12:19:51 +00:00
- "6868:80"
depends_on:
- smtp4dev
smtp4dev:
2021-03-31 12:19:51 +00:00
image: rnwood/smtp4dev:latest
container_name: elsa-smtp4dev
ports:
- "3000:80"
2021-04-06 11:48:05 +00:00
- "2525:25"