Challenge: How to migrate a 3.5TB node in 5 days?

Here is a full example to illustrate what @Alexey said:

docker run -d --restart unless-stopped \
	-p [...]:28967 \
	-p [...]:14002 \
	-e WALLET=0x[...] \
	-e EMAIL=[...]@[...].com \
	-e ADDRESS=[...]:[...] \
	-e STORAGE=1800GB \
	--mount type=bind,source=/[...]/identities/storj_node_1,destination=/app/identity \
	--mount type=bind,source=/[...]/mounts/storj_node_1,destination=/app/config \
	--mount type=bind,source=/[...]/logs/storj_node_1,destination=/var/log \
	--name storj_node_1 \
	storjlabs/storagenode:latest \
	--log.output=/var/log/node.log

Yes Thansk. That’s clear :slight_smile: