1. Create a folder for blockchain data
mkdir -p sei-data
chmod 777 sei-data2. Set snapshot in docker-compose file. Go to Polkachu and copy the latest snapshot link. Copy the link into the environment variable in the docker-compose file.
URL # Set snapshot URL: https://polkachu.com/tendermint_snapshots/seidocker-compose up -d --build-
Find the newest release on GitHub. For example: "v6.0.2"
-
Update
VERSIONindocker-compose.ymlfile.
services:
sei-node:
container_name: sei-node
build:
context: .
args:
VERSION: v6.0.2 # Update the version
ports:
...- Rebuild and start the docker image.
docker-compose up -d --build