Wexflow is an extensible, and cross-platform workflow automation engine.
This image runs the Wexflow server using .NET 10 on Alpine Linux.
docker run -d -p 8000:8000 --name wexflow aelassas/wexflow:latest
Then visit http://localhost:8000
adminwexflow2018Using compose, here's a sample docker-compose.yml:
services:
wexflow:
image: aelassas/wexflow:latest
container_name: wexflow
ports:
- "8000:8000"
volumes:
# - ./wexflow-config/Wexflow.xml:/opt/wexflow/Wexflow/Wexflow.xml
# - ./wexflow-config/Database:/opt/wexflow/Wexflow/Database
# - ./wexflow-config/appsettings.json:/opt/wexflow/Wexflow.Server/appsettings.json
# - ./wexflow-config/settings.js:/opt/wexflow/Admin/js/settings.js
restart: unless-stopped
To run the compose:
docker compose up
/opt/wexflow/ inside the containerTo inspect or modify the Wexflow files:
docker exec -it wexflow sh
cd /opt/wexflow/
docker logs wexflow
docker stop wexflow
docker rm wexflow
Wexflow is licensed under the MIT License.
Content type
Image
Digest
sha256:bfa7722e0…
Size
107.2 MB
Last updated
10 days ago
docker pull aelassas/wexflow