Audit or how to check if my node Is working proper

The problem is that the node running inside the container, it doesn’t have such directory as /home/pi, because you haven’t mapped it in the docker run command with a --mount option. So, you should redirect to the one of mapped locations.
For example, /app/config/storagenode.log. This file storagenode.log will be available from the host in the storage location.

2 Likes