Elsa Server + Studio
Using Docker Compose, you can quickly set up and run both Elsa Server and Elsa Studio. This guide walks you through creating a docker-compose.yml file to deploy these services.
Docker Compose File Structure
services:
# Elsa Server.
elsa-server:
image: elsaworkflows/elsa-server-v3-5:latest
pull_policy: always
environment:
ASPNETCORE_ENVIRONMENT: Development
HTTP_PORTS: 8080
HTTP__BASEURL: http://localhost:12000
ports:
- "12000:8080"
# Elsa Studio connected to Elsa Server.
elsa-studio:
image: elsaworkflows/elsa-studio-v3-5:latest
pull_policy: always
environment:
ASPNETCORE_ENVIRONMENT: Development
HTTP_PORTS: 8080
HTTP__BASEURL: http://localhost:13000
ELSASERVER__URL: http://localhost:12000/elsa/api
ports:
- "13000:8080"
depends_on:
- elsa-serverRunning the Docker Compose File
Service Configuration Details
Elsa Server
Elsa Studio
Last updated