Does the docker container need to be resized if storage requirements increase over time?
Docker containers may need adjustments if their storage requirements increase significantly, but resizing a container isn’t like resizing a virtual machine.
I’m just repeating lessons learned and not technical enough to advise, but better research “how to” if this is indeed an issue.
1 Like
It is usually not necessary, docker adapts to the size of your disk, unless you have configured it from the beginning with the command
docker run -it --storage-opt size=120G --name corteza-example corteza-example:latest
1 Like