ActiveWorkflow v0.9.12 Release Notes

Release Date: 2020-11-23 // over 3 years ago
  • You can now try ActiveWorkflow without any external dependencies. Just run:

    docker run -p 3000:3000 automaticmode/active\_workflow
    

    And login at http://localhost:3000 with admin/password.

    🐳 If you want to make all the data persistent, you should use docker volume like this:

    docker run -p 3000:3000 -v aw-data:/var/lib/postgresql/11/main automaticmode/active\_workflow
    

    ActiveWorkflow image now has postgres database server included and can run all processes in one container.

    ⏱ For production use it is still recommended to use external database and multiple containers to run web, scheduler and worker respectively.