I am trying to access logs of my Node.js
application which is written in file mylogfile.log
inside application's directory.
Using find / -type f -name mylogfile.log
i was able to see this output:
/var/lib/docker/aufs/diff/0303e86afdc58e13b5afcc07ea3694e0e9e6d5e5cf8530a0854a76fbe2baf574/app/mylogfile.log
/var/lib/docker/aufs/diff/a9a0dab44456acd8b43915ed686c282b778ab99df31f62076082e121274ef6e2/app/mylogfile.log
/var/lib/docker/aufs/mnt/0303e86afdc58e13b5afcc07ea3694e0e9e6d5e5cf8530a0854a76fbe2baf574/app/mylogfile.log
What are those directories (if this is a previous app pushes, why do i even need them, i don't really want to flood hard drive's space with them) and which of those is a directory of my currently running app?
Also inside ...mnt/
and ...diff/
there is much more folders with similar cryptic names.