Where can I find the config.yaml file on Linux?

Where can I find the config.yaml file on Linux? I would like to redirect my logs. Thanks.

1 Like

Its in the same folder as your parameter for destination=/app/config in your docker command.

But where is ‘/app/config’ located?

What’s the name of the folder that stores your node’s data? Check in that folder.

It is /media/pi/Elements/storJ but there is no /app/config folder in there.

/app/config is the folder inside the container, which you mapped to a folder outside the container with the --mount parameter in your docker command. Check your docker run command.

This was my run command –mount type=bind,source="/media/pi/Elements/storJ",destination=/app/config

type cd /media/pi/Elements/storJ and there you should find config.yml

Ahhh, I see, it is directly in there, thx :laughing:, is there some kind of docu about that file?