Skip to main content

Install the PMC CLI

This topic contains instructions to install and update Postchain Management Console (PMC) CLI.

Install

You can download and install the latest PMC CLI by browsing https://gitlab.com/chromaway/core-tools/management-console/-/packages and searching for the latest version or via a package manager.

brew tap chromia/core https://gitlab.com/chromaway/core-tools/homebrew-chromia.git
brew install chromia/core/pmc

Update

You can download and install the latest PMC CLI from here, or if you have installed the PMC CLI via a package manager, you can update it with the following:

brew update
brew upgrade chromia/core/pmc

Docker

Docker can run a standalone Linux container with the PMC CLI pre-installed. Make sure that you have set up the PostgreSQL database.

To use the published Docker images, you must first have Docker installed and configured on your host machine. Please refer to the Docker documentation on how to install Docker on Windows, Mac, and Linux.

Start the Docker container with PMC CLI pre-installed

To run the latest version of the PMC CLI, use the docker run command and specify the CLI docker image name and any of the pmc commands.

Unix-based systems:

docker run --rm -v $(pwd):/usr/app -w /usr/app registry.gitlab.com/chromaway/core-tools/management-console/pmc:<latest version>

Windows:

docker run --rm -v "%cd%":/usr/app -w /usr/app registry.gitlab.com/chromaway/core-tools/management-console/pmc:<latest version>

See the Docker command line reference for information about updating or uninstalling the Docker image.