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
- feat: Add queue override option on enqueue by @kriyanshii in #1240
- feat: enhance container options by @yottahmd in #1244
- fix(ui): correct api params by @yottahmd in #1246
Full Changelog: v1.22.2...v1.22.3