Execute the following Docker command to initialize the container with the latest Supra Validator Docker image for your target environment on the new instance.
# Define Network Type
NETWORK="testnet" # Change to "mainnet" if running on mainnet
# Specify the IP address.
IP_ADDRESS="your_ip_address"
# Determine the container name based on network type
if [ "$NETWORK" = "mainnet" ]; then
CONTAINER_NAME="supra_mainnet_$IP_ADDRESS"
else
CONTAINER_NAME="supra_$IP_ADDRESS"
fi