Storj update v1.77.3 not allowing me to pull update Pi 4

When I try to update the to the latest release 1.77.3 I get
sudo docker pull storjlabs/storagenode:latest
latest: Pulling from storjlabs/storagenode
Digest: sha256:ca755aa0de7f30f5451826a564ea4d633d236724e2626c3939fcdba367d362e5
Status: Image is up to date for storjlabs/storagenode:latest
docker.io/storjlabs/storagenode:latest

Dashboard is still showing v1.76.2

Maybe they stopped the rollout?

3 Likes

Still not able to update same issue I have noticed when I transferred to a new drive i had some issues and see 5 old containers when using the
sudo docker ps -a
NAMES
99b89f06fb6e storjlabs/storagenode:latest “/entrypoint --serve…” 3 days ago Up 2 minutes 0.0.0.0:5999->5999/tcp, :::5999->5999/tcp, 0.0.0.0:14002->14002/tcp, :::14002->14002/tcp, 0.0.0.0:28967->28967/tcp, :::28967->28967/tcp, 0.0.0.0:28967->28967/udp, :::28967->28967/udp storagenode
5c754b2e912b storjlabs/watchtower “/watchtower storage…” 6 weeks ago Up 2 minutes watchtower
2ac635e24597 storjlabs/storagenode:latest “/entrypoint” 8 weeks ago Exited (0) 8 weeks ago old6
b17f519dc5c1 storjlabs/storagenode:latest “/entrypoint” 8 weeks ago Exited (0) 8 weeks ago OLD5
4b4d0cdb997a storjlabs/storagenode:latest “/entrypoint” 8 weeks ago Exited (0) 8 weeks ago OLD3
fd80a233da87 storjlabs/storagenode:latest “/entrypoint” 8 weeks ago Exited (0) 8 weeks ago OLD2

I tried to use the docker image prune
WARNING! This will remove all dangling images.
Are you sure you want to continue? [y/N] y
Total reclaimed space: 0B

but it does not remove the old containers could this be my issue having the old containers?

This is a completely different problem. It is a docker basics: docker rm | Docker Documentation

docker rm 2ac635e24597 b17f519dc5c1 4b4d0cdb997a fd80a233da87

or you may use

docker container prune

or even

docker system prune

for everything not used (not running)

1 Like

thank you that worked perfectly also seems to have updated to version 1.78.3 automatically 3 days ago

1 Like