looks like the volumes on the host were created by root
. The user in the container runs as user node
with uid/gid 1000.
So you can try
a) cd to /volume1/docker/
on the host and run chown -R 1000:1000 ./magicmirror
(you have to do this as root
)
or
b) run the container as user root
, you have to add
--user root \
to the docker run ...
command