I think the fetch errors are related to https://github.com/MagicMirrorOrg/MagicMirror/issues/3329
you can try the newest electron version or disable ipv6
I think the fetch errors are related to https://github.com/MagicMirrorOrg/MagicMirror/issues/3329
you can try the newest electron version or disable ipv6
@ajoreis said in Black screen on the radxa ROCK 2F, using docker:
Segmentation fault labwc
that tells you that labwc crashes, further investigation without having the used hardware is impossible.
we are at "@fortawesome/fontawesome-free": "^6.2.1"
can reproduce it if I use a nonexisting mapUrl, so I think you have a typo in your mapUrl …
@sdetweil said in Alt Key Doesn't Open Menu:
I see how to do the disable in code, but we don’t do that.
we are using frame: false in electronOptions
@sdetweil said in Default weather module stuck loading after latest MM update:
@karsten13 dang I get that wrong EVERY time!
one of the reasons I wrote my own njk …

the missing node-fetch in package.json of MMM-RemoteControl was fixed 19h before so I think you installed the fixed version and rhbauman not …
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