elsa-core/docker
2021-08-24 11:52:45 +02:00
..
docker-compose.yaml Fix docker readme + compose file 2021-08-24 11:52:45 +02:00
Dockerfile Update docker files to target specific framework 2021-06-14 15:41:43 +02:00
Dockerfile-elsa-dashboard Speed up docker build for dashboard (#1287) 2021-07-20 13:44:35 +02:00
Dockerfile-elsa-dashboard-and-server Speed up docker build for dashboard (#1287) 2021-07-20 13:44:35 +02:00
Dockerfile-elsa-server Add elsa server docker GH workflow 2021-05-14 13:59:28 +02:00
README.md Fix docker readme + compose file 2021-08-24 11:52:45 +02:00

Build and run locally

Clone the repository and open a command line in the project root folder. Then you can run the two docker commands below to build and start the container. Alternatively you can use the provided docker-compose file in the docker folder that does it for you via docker-compuse up -d. The docker-compose file will also include a fake smtp server to test email delivery.

$ docker build -t elsadashboardwithserver:local -f ./docker/Dockerfile-elsa-dashboard-and-server .
$ docker run -t -i -e Elsa__Server__BaseAddress='http://localhost:6868' -e ASPNETCORE_ENVIRONMENT='Development' -p 6868:80 elsadashboard:latest

The dashboard will be available on port 6868 and if you used the docker-compose file to start the application you will find a fake SMTP server on port 2525.