this post was submitted on 02 Dec 2024
118 points (96.8% liked)

Selfhosted

60587 readers
1102 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

Detailed Rules Post

  1. Be civil.

  2. No spam.

  3. Posts are to be related to self-hosting.

  4. Don't duplicate the full text of your blog or readme if you're providing a link.

  5. Submission headline should match the article title.

  6. No trolling.

  7. Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.

  8. AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 3 years ago
MODERATORS
 

Mine is beaverhabits, just a good habit app that has come out recently.

you are viewing a single comment's thread
view the rest of the comments
[–] bluelion@sh.itjust.works 13 points 2 years ago (4 children)

https://gitlab.com/Nulide/findmydeviceserver, a FOSS and self-hosted alternative to location history. Particularly useful for finding my device which has no Google services on it.

[–] WhyJiffie@sh.itjust.works 3 points 2 years ago (1 children)

sorry what, it can keep a location history? how?

[–] bluelion@sh.itjust.works 3 points 2 years ago

You need to install the client from F-Droid and it periodically polls your device for its location.

[–] mbirth@lemmy.ml 2 points 2 years ago (1 children)
[–] bluelion@sh.itjust.works 2 points 2 years ago (1 children)

I used Traccar before switching to FMD. It used a lot of battery for somewhat inaccurate results in my case (might be phone related).

[–] mbirth@lemmy.ml 4 points 2 years ago

I’m using OwnTracks on the phone. No complaints at all.

[–] WhyJiffie@sh.itjust.works 0 points 2 years ago

sorry what, it can keep a location history? how?

[–] paradox2011@lemmy.ml -1 points 2 years ago (1 children)

I've been wanting to spin this up myself, but the fact that the Dev says his example docker-compose.yml is incomplete has stopped me in the past. Did you have to add anything to get it functional?

[–] bluelion@sh.itjust.works 1 points 2 years ago (1 children)

the only change I had to make was to add the config file to the volumes list:

compose.yml

services:
  fmd-server:
    image: registry.gitlab.com/nulide/findmydeviceserver:v0.7.0
    container_name: fmd-server
    volumes:
      - data:/data
      - ./fmd/data:/fmd/db/
      - ./fmd/config/config.yml:/fmd/config.yml:ro
    restart: unless-stopped
    networks:
      - fmd_server
#    ports:
#      - 8080:8080

# legacy
volumes:
  data:

networks:
  fmd_server:

[–] paradox2011@lemmy.ml 2 points 2 years ago

Awesome, thanks. I'm going to give it a try. It seems like the best FOSS find my device type service available by far.