TACo Node Management
Automatically Upgrade Node
docker run --detach \
--name watchtower \
--restart unless-stopped \
--volume /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower ursula --cleanupManually Upgrade Node
# Stop container
$ docker stop ursula && docker rm ursula
# Get latest image
$ docker pull nucypher/nucypher:latest
# Start node
$ docker run -d \
--name ursula \
--restart unless-stopped \
-v ~/.local/share/nucypher:/root/.local/share/nucypher:rw \
-v ~/.cache/nucypher:/root/.cache/nucypher:rw \
-v ~/.ethereum/:/root/.ethereum:ro \
-p 9151:9151 \
--env-file nucypher.env \
nucypher/nucypher:latest \
nucypher ursula run Update Node Configuration
Last updated