The api project provides the core API service for workflow management.
290
Slickflow.NET is an open-source workflow engine for .NET. This container provides the core API service for workflow management.
docker pull besley2096/slickflow-api:latest
docker run -d -p 5000:5000 \
-e WfDBConnectionType=PGSQL \
-e WfDBConnectionString="Server=host.docker.internal;Port=5432;Database=wfdbbpmn2;User Id=postgres;Password=your-password;TimeZone=UTC;" \
--name slickflow-api \
besley2096/slickflow-api:latest
Configure database connection using environment variables:
-e WfDBConnectionType=PGSQL
-e WfDBConnectionString="Server=host.docker.internal;Port=5432;Database=wfdbbpmn2;User Id=postgres;Password=your-password;TimeZone=UTC;"
For detailed configuration, see Database Configuration Guide.
services:
api:
image: besley2096/slickflow-api:latest
ports:
- "5000:5000"
environment:
- WfDBConnectionType=PGSQL
- WfDBConnectionString=Server=host.docker.internal;Port=5432;Database=wfdbbpmn2;User Id=postgres;Password=your-password;TimeZone=UTC;
| Variable | Description | Default |
|---|---|---|
ASPNETCORE_URLS | Application listening address | http://+:5000 |
ASPNETCORE_ENVIRONMENT | Runtime environment | Production |
WfDBConnectionType | Database type | PGSQL |
WfDBConnectionString | Database connection string | From appsettings.json |
latest - Latest stable versionv3.5.0 - Version 3.5.0v3.5 - Version 3.5.xv3 - Version 3.xMIT License
Content type
Image
Digest
sha256:5c4779df0…
Size
120.9 MB
Last updated
9 months ago
docker pull besley2096/slickflow-api