Install Exorde CLI from a container image
You can run Exorde CLI using a container image from Docker Hub. If you are an advanced user, you also have the ability to build your own image from sources.
info
This documentation uses Docker as example, but commands should be the same for other container runtimes like Podman.
Requirements
- Windows 8.1/10/11 or Linux or macOS
- A container runtime, like Docker
- 4 GB RAM (+ 1 GB per additional module run)
- 2 CPU cores
- 1 GB storage (HDD or SSD)
Method 1 - Install the official Exorde CLI image
The official Exorde CLI image is a Linux image which runs natively on Linux and macOS with amd64 and arm64 CPU. Windows users must configure Docker in Linux container mode.
The latest image of Exorde CLI can be retrieved from Docker Hub, this image is ready to run. You can directly go to the run section.
Method 2 - Build and run your own image
You can build your own image from sources:
- Download the latest version of Exorde CLI:
- Linux
- macOS
- Windows
wget https://github.com/exorde-labs/ExordeModuleCLI/archive/refs/heads/main.zip \
--output-document=ExordeModuleCLI.zipwget https://github.com/exorde-labs/ExordeModuleCLI/archive/refs/heads/main.zip \
--output-document=ExordeModuleCLI.zipInvoke-WebRequest https://github.com/exorde-labs/ExordeModuleCLI/archive/refs/heads/main.zip -OutFile ExordeModuleCLI.zip
- Unzip Exorde CLI:
- Linux
- macOS
- Windows
unzip ExordeModuleCLI.zip \
&& rm ExordeModuleCLI.zip \
&& mv ExordeModuleCLI-main ExordeModuleCLIunzip ExordeModuleCLI.zip \
&& rm ExordeModuleCLI.zip \
&& mv ExordeModuleCLI-main ExordeModuleCLIExpand-Archive .\ExordeModuleCLI.zip -DestinationPath .
rm ExordeModuleCLI.zip
mv ExordeModuleCLI-main ExordeModuleCLI - Go to the root of Exorde CLI folder:
- Linux
- macOS
- Windows
cd ExordeModuleCLI
cd ExordeModuleCLI
cd ExordeModuleCLI
- Build the container image:
- Linux
- macOS
- Windows
docker build -t exorde-cli:latest .
docker build -t exorde-cli:latest .
docker build -t exorde-cli:latest .
info
Exorde CLI is now ready to run within a container!
Please read the run section to have more information about how to run Exorde CLI.