To download and run the installation script in a single command:
$ curl -sSL https://install.rocketgraph.com/install.sh | sh
Before running the installation command, you’ll need to open a terminal or command prompt:
macOS:
Cmd + Space
) and type “Terminal”Linux:
Ctrl + Alt + T
Download and run the installer — it will automatically install Rocketgraph and all dependencies.
View the full Windows installation guide if needed.
Rocketgraph requires a container platform:
.yml
and .env
) in the directory where they are run.
📌 If you want to install Rocketgraph in a specific location, run the script from that directory.By default, Rocketgraph uses standard ports. If you need to specify custom ports, you can pass them as parameters to the installation script. The available options are:
Option | Description |
---|---|
–http-port PORT | Specify custom HTTP port (default: 80) |
–https-port PORT | Specify custom HTTPS port (default: 443) |
Here’s an example with custom ports:
$ curl -sSL https://install.rocketgraph.com/install.sh | sh -s -- --http-port 8080 --https-port 8443
All parameters are optional. If you specify only the HTTP port, the others will use their defaults.
After installation, you can manage Rocketgraph services using Docker Desktop, which provides a graphical interface to start, stop, and monitor your containers.
If you prefer using the command line, you can run the following commands from the installation directory (where the .yml
file is located):
$ docker compose up -d # Start the services in the background
$ docker compose down # Stop and remove the containers
For IBM Power platforms using podman:
$ podman-compose up -d # Start the services in the background
$ podman-compose down # Stop and remove the containers
For more details, refer to the Mission Control Guide.
Alternatively, you can manually download and run the installation scripts.
$ bash install.sh
Or with custom ports:
$ bash install.sh --http-port 8080 --https-port 8443
Open a terminal:
Run this command to download and execute the installer script directly from the web:
powershell -ep Bypass -c "iex (iwr -useb 'https://install.rocketgraph.com/install.ps1')"
If you already downloaded the script manually, run it like this:
powershell -ep Bypass -f install.ps1
Before running any script, it’s good practice to review its contents to ensure security and integrity. This helps prevent potential risks, especially in production environments.
For more details about the Windows installer itself, including release notes and troubleshooting, see the
Rocketgraph Installer Repository