A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Docker install on synology nas
-
@karsten13 of course thanks for checking it out.
Here is the docker start command:
docker run -d \ --name magicmirror \ --publish 8036:8080 \ --restart unless-stopped \ -e TZ=America/Chicago \ --volume /volume1/docker/magicmirror/config:/opt/magic_mirror/config \ --volume /volume1/docker/magicmirror/modules:/opt/magic_mirror/modules \ --volume /volume1/docker/magicmirror/css:/opt/magic_mirror/css \ karsten13/magicmirror:latest
and here are the logs of the container:
-
looks like the volumes on the host were created by
root
. The user in the container runs as usernode
with uid/gid 1000.So you can try
a) cd to
/volume1/docker/
on the host and runchown -R 1000:1000 ./magicmirror
(you have to do this asroot
)or
b) run the container as user
root
, you have to add--user root \
to the
docker run ...
command -
-
@karsten13 i think /opt is non existent on synology
-
@sdetweil said in Docker install on synology nas:
@karsten13 i think /opt is non existent on synology
but in the container
-
this turned out to be a permissions problem. the folder was created w the synology user, but the container is running ss user 1000
-