Any problem with Docket's wallet for win or with the blockchain? My wallet seems stuck on "12%.... blockchain is loading".
Was having the same problem but followed the update instructions at
https://lisk.io/documentation?i=lisk-docs/DockerInstall and it worked well.
To update to the latest version of Lisk, simply run the following commands:
WARNING: The provided instructions will remove the previous container and create a new one. Please be sure to backup any data before proceeding. See: docker cp --help for more information on how to copy files from the container to the host machine.
Get the docker container id:
docker ps -a
Stop the docker container (replace container_id with your own id):
docker stop container_id
Remove the old container (replace container_id with your own id):
docker rm container_id
Download the latest docker image:
docker pull lisk/mainnet
Install the docker image (executed only once per installation):
docker run -d --restart=always -p 0.0.0.0:8000:8000 lisk/testnet
Remove any dangling images:
docker rmi $(docker images -q --filter "dangling=true")
Your docker image should now be updated.