Installation
Download the Binary
Binary
Go to the releases, download the package for your OS, and add to your $PATH
.
Install Script
Install script which is very useful in scenarios like CI. Many thanks to GoDownloader for enabling the easy generation of this script.
By default, it installs on the ./bin
directory relative to the working directory:
sh -c "$(curl --location https://raw.githubusercontent.com/F1bonacc1/process-compose/main/scripts/get-pc.sh)" -- -d
It is possible to override the installation directory with the -b
parameter. On Linux, common choices are ~/.local/bin
and ~/bin
to install for the current user or /usr/local/bin
to install for all users:
sh -c "$(curl --location https://raw.githubusercontent.com/F1bonacc1/process-compose/main/scripts/get-pc.sh)" -- -d -b ~/.local/bin
Caution
On macOS and Windows, ~/.local/bin
and ~/bin
are not added to $PATH
by default.
Nix
If you have the Nix package manager installed with Flake support, just run:
# to use the latest binary release
nix run nixpkgs/master#process-compose -- --help
# or to compile from the latest source
nix run github:F1bonacc1/process-compose -- --help
To use process-compose declaratively configured in your project flake.nix
, checkout process-compose-flake.