The latest versions no longer working (MM inside Docker is fine)
See original GitHub issueHi, I can’t get the container working in the latest versions, using Docker Desktop 2.1.0.5 (latest version) win64 (no other version tested).
When I try to access it, I get the following:
- Firefox: Fehler: Verbindung unterbrochen / The connection was reset
- Chrome: ERR_EMPTY_RESPONSE
without Container/portsharing the errors are:
- Firefox: Fehler: Verbindung fehlgeschlagen / connection failed
- Chrome: ERR_CONNECTION_REFUSED
Inside the container MM is running correctly, tested with wget localhost:8080
and also the logs show no error either:
[…] [11:27:13.574] [LOG] Sockets connected & modules started … [11:27:13.574] [LOG] Ready to go! Please point your browser to: http://localhost:8080
When i use an old version everything works (same configuration and default).
Working Image (30th dec):
- bastilimbach/docker-magicmirror@sha256:8ef61d7a60009c34b1b1a2e4d3a427a4fe1da58b84af697f5bfad5333b1ef718
Not working (for example):
- bastilimbach/docker-magicmirror@sha256:b02a7034893816ad964f7c975b07907ffcdcb9ff0b3a08e1b84e5e5dda771e26
Used command (working with old version):
docker run -d --publish 80:8080 --restart always --env TZ=Europe/Berlin --volume c:/magic_mirror/config:/opt/magic_mirror/config --volume c:/magic_mirror/modules:/opt/magic_mirror/modules --volume c:/magic_mirror/css:/opt/magic_mirror/css --name magic_mirror bastilimbach/docker-magicmirror
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (6 by maintainers)
You need specify
address: "0.0.0.0",
to force to listen on all interfaces. https://github.com/xbgmsharp/docker-MagicMirror/commit/1fe37ada760db6bc391d492259c8cd65bae0f73dThanks @chris-kwl for the PR. This is what open source is all about 🎉
Merged it!