Elsa Server + Studio - Single Image
This guide demonstrates how to set up Elsa Server and Studio using Docker Compose, enabling you to run both components from a single Docker image.
Docker Compose Configuration
services:
# Elsa Studio and Server from a single image.
elsa-server-and-studio:
image: elsaworkflows/elsa-server-and-studio-v3-5:latest
pull_policy: always
environment:
ASPNETCORE_ENVIRONMENT: Development
HTTP_PORTS: 8080
HTTP__BASEURL: http://localhost:14000
ports:
- "14000:8080"Steps to Set Up
docker-compose up
Accessing Elsa
Last updated