Is it possible to use any setting in config.yaml in the Docker run command?
For example: server.private-address: 127.0.0.1:7778
You can use these flags:
docker exec -it storagenode ./storagenode run --help
If you specify them as a command line arguments (i.e. they should be after the image name in the docker run
command), they will have a precedence above parameters in the config.yaml
See storj/entrypoint at 7afdb15fc872e555ed7b5ef6a43405d2f5a617f0 · storj/storj · GitHub for reference.