schklom / Mirror-workflows

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Failed to get private key!

lukasheinz92 opened this issue · comments

When I enter the user ID and click on Locate then I get an error Failed to get private key!. I have tried to build my own image or use an existing image - https://hub.docker.com/r/schklom/findmydeviceserver but with the same result. I have also tried to use two different phones (one with Android and one with LineageOS).

I am running the findmydeviceserver on Raspberry Pi 4 using Docker Compose:

services:
  findmydeviceserver:
    image: schklom/findmydeviceserver:latest
    container_name: find_my_device
    ports:
      - 1020:1020/tcp
    volumes:
      - /path/to/appdata/find_my_device/:/go/src/fmd/objectbox

All I do is build the official Dockerfile. I think this is a problem you should post in https://gitlab.com/Nulide/findmydeviceserver/-/issues.

By the way, I had not updated the dockerhub page in a while. Now, you should use the official specification (aside from the image) because the official Dockerfile is finally available (I was using mine before it was available). This means you should replace

      - /path/to/appdata/find_my_device/:/go/src/fmd/objectbox

with

      - /path/to/appdata/find_my_device/:/fmd/objectbox

Ok, thank you.