You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Process Compose is a simple and flexible scheduler and orchestrator to manage non-containerized applications.
Why? Because sometimes you just don't want to deal with docker files, volume definitions, networks and docker registries.
Since it's written in Go, Process Compose is a single binary file and has no other dependencies.
Once installed, you just need to describe your workflow using a simple YAML schema in a file called process-compose.yaml:
And start it by running process-compose from your terminal.
Check the Documentation for more advanced use cases.
Features:
Processes execution (in parallel or/and serially)
Processes dependencies and startup order
Process recovery policies
Manual process [re]start
Processes arguments bash or zsh style (or define your own shell)
Per process and global environment variables
Per process or global (single file) logs
Health checks (liveness and readiness)
Terminal User Interface (TUI) or CLI modes
Forking (services or daemons) processes
REST API (OpenAPI a.k.a Swagger)
Logs caching
Functions as both server and client
Configurable shortcuts
Merge Configuration Files
Namespaces
Run Multiple Replicas of a Process
Run a Foreground Process
Themes Support
It is heavily inspired by docker-compose, but without the need for containers. The configuration syntax tries to follow the docker-compose specifications, with a few minor additions and lots of subtractions.