Increasing size in config not visible in Dashboard

  1. I would recommend to do not use GUI to operate docker containers, because you do not control how authors implemented their wrapper around the docker. Something can be broken or can even lead to disqualification (like it were with using of -v option instead of --mount, see Node disqualified...WHY? - #10 by BrightSilence)
  2. If you updated the STORAGE environment variable, then you do not need to update config.yaml. The change in STORAGE variable does not update the config.yaml file, because that is not needed - it will be overridden with the environment variable, see storj/entrypoint at b5194762f2f4976747880d99a56542008e7df2d5 · storj/storj · GitHub
  3. After updating the STORAGE environment you need to re-create the container, to do so you need to stop and remove the container and create a new one with all your parameters include changed ones.
    In CLI it’s easy to do
docker stop -t 300 storagenode
docker rm storagenode
docker run ....