Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Docker (www.docker.com) 是一个开源的平台,用于利用容器方便地创建、部署和运修应用.
This article describes the steps required to run Joget Workflow on Docker. With Docker, you can easily deploy Joget Workflow with just a single command. Public Joget Workflow Docker images are hosted in the Docker Hub repository (https://hub.docker.com/u/jogetworkflow/)
Install Docker following the docs at https://docs.docker.com/engine/installation. There are instructions for Linux, Windows or Mac.
The easiest way is to run a Joget Workflow container which also contains a MySQL database:
docker run -d -p 8080:8080 --name joget jogetworkflow/joget-enterprise
With just a single command, you will have an entire running installation of Joget Workflow. Browse to the installation at http://your_docker_host:8080/jw
For better flexibility and manageability, you can run a Joget Workflow container separately from the database and shared data volume:
# create a volume container for shared data docker create -v /opt/joget/wflow --name jogetdata ubuntu /bin/true # run a MySQL database container docker run -d --name jogetdb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=jwdb -e MYSQL_USER=joget -e MYSQL_PASSWORD=joget -e MYSQL_DATABASE=jwdb mysql:5.6 # run a Joget Workflow container docker run -d --link jogetdb:jwdb --name joget -p 8080:8080 -e MYSQL_HOST=jwdb -e MYSQL_DATABASE=jwdb -e MYSQL_PORT=3306 -e MYSQL_USER=joget -e MYSQL_PASSWORD=joget --volumes-from jogetdata jogetworkflow/joget-enterprise
Browse to the installation at http://your_docker_host:8080/jw