Install
The installation method for the RepoFlow CLI is to install it as a Docker image.
Run RepoFlow CLI
You can add your environment variables inline or use a file. Visit RepoFlow CLI environment variables to learn more.
docker run --env-file .env -t -i api.repoflow.io/repoflow-public/docker-public/library/repoflow-cli:0.4.5
Note: The flags
-t
and-i
are required. The CLI won't work without them.
Using ARM64 Architecture
For ARM64 environments, such as Apple Silicon Macs or ARM-based servers, you can use the -arm64
tag to run the RepoFlow CLI compatible with ARM64 architecture.
To run the RepoFlow CLI with the ARM64 tag:
docker run --env-file .env -t -i api.repoflow.io/repoflow-public/docker-public/library/repoflow-cli:0.4.5-arm64
Note: Remember to include the
-t
and-i
flags, as they are essential for the CLI to function correctly.