Skip to main content

Update

Automatic updates

The module detects available updates and automatically installs them. This is important for the Exorde Network to remain hommogenous.

Manual updates (re-install the application)

If automatic update fails, the application must be re-installed to keep working.

To update a Docker container, follow these steps:

  1. Stop and delete all running containers of Exorde Client:

    docker stop <CONTAINER_NAME> && docker rm <CONTAINER_NAME>

    For example, if you are running only one container named "exorde-client":

    docker stop exorde-client && docker rm exorde-client
  2. Start new containers:

    docker run \
    -d \
    --restart unless-stopped \
    --pull always \
    --name <CONTAINER_NAME> \
    exordelabs/exorde-client \
    --main_address <YOUR_MAIN_ADDRESS>