Must have:
Docker Installed: Ensure you have Docker installed on your machine. If not, you can download it from Docker's official website.
Run the Docker Command:
docker run --rm -ti ghcr.io/renlabs-dev/subspace:ad75e7d node-subspace --chain main --sync warp
This command will:
docker run
starts a new Docker container.--rm
ensures the container is removed after it stops.-ti
allocates a pseudo-TTY and keeps the container interactive.ghcr.io/renlabs-dev/subspace:ad75e7d
specifies the Docker image to use.node-subspace --chain main --sync warp
runs the Subspace node with the specified options.Verify the Node is Running:
You can view all package versions for the Docker image at the following link: Subspace Docker Package Versions
Must have:
Clone the Repository:
git clone https://github.com/commune-ai/subspace
Navigate to the Project Directory:
cd subspace
Install Rust (if not already installed):
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env
to update your environment.Compile the Latest Release:
subspace
directory, then run:
cargo build --release
Start the Node:
./target/release/node-subspace --chain main --sync warp