LukeChannings/moviematch

[Bug] unable to find user deno: no matching entries in passwd file

morganzero opened this issue · 6 comments

  • MovieMatch version: Develop
  • System: Docker
  • Plex Version: PMS Docker Public

Describe the bug When rebuilding my container with the :develop tag I get this error message: unable to find user deno: no matching entries in passwd file.

I can't reproduce this in the x86 or arm image. Can you make sure you've pulled the latest :develop image, and also try explicitly using lukechannings/moviematch:2.0.0-beta.2?

Yeah, I tried pulling from :develop and :2.0.0-beta.2. Both give me the same output, unfortunately.

Can you tell me more about your system?

OS: Linux or macOS or Windows
Architecture: x86_64 or aarch64
Docker version: ?

Can you send me the output of:

docker pull lukechannings/moviematch:develop
docker images lukechannings/moviematch:develop

Hmm. When rebuilding via docker-compose again I got it to work.
bild

Now the odd thing is that when I use a reverse proxy again, this is what shows:
bild
Any ideas?

I suspect you had a stale :develop image. The second screenshot looks fine to me. If it was displaying as plain text you're possibly not forwarding content-type headers in your reverse proxy.

Docker Compose can be a bit finicky, to ensure it's using the latest image you need to:

docker-compose pull && docker-compose up -d

You might need to pass --force-recreate too