github dagu-org/dagu v1.22.3

one day ago

This release includes enhancement for container field, queue override option, and bugfix for the system health page in the Web UI. Now you can run a container using its entrypoint or arbitrary command and execute steps in the container.

Example:

container:
  image: postgres:16
  env:
    - POSTGRES_PASSWORD=secret
    - POSTGRES_DB=appdb
  startup: entrypoint
  waitFor: running

steps:
  - name: check-ready
    command: pg_isready -U postgres -d appdb
    retryPolicy:
      limit: 10
      intervalSec: 1

  - name: create-table
    command: psql -U postgres -d appdb -c "CREATE TABLE IF NOT EXISTS demo(id INT PRIMARY KEY, name TEXT);"

For more details, visit documentation.

Changes

Full Changelog: v1.22.2...v1.22.3

Don't miss a new dagu release

NewReleases is sending notifications on new releases.