ComradeMiao@lemmy.world to Selfhosted@lemmy.worldEnglish · 11 个月前Your favorite lesser known docker container?message-squaremessage-square68fedilinkarrow-up1136arrow-down16file-text
arrow-up1130arrow-down1message-squareYour favorite lesser known docker container?ComradeMiao@lemmy.world to Selfhosted@lemmy.worldEnglish · 11 个月前message-square68fedilinkfile-text
minus-squareparadox2011@lemmy.mllinkfedilinkEnglisharrow-up3arrow-down1·11 个月前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?
minus-squareblue lion@sh.itjust.workslinkfedilinkEnglisharrow-up4·11 个月前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:
minus-squareparadox2011@lemmy.mllinkfedilinkEnglisharrow-up2·11 个月前Awesome, thanks. I’m going to give it a try. It seems like the best FOSS find my device type service available by far.
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?
the only change I had to make was to add the config file to the volumes list:
compose.yml
Awesome, thanks. I’m going to give it a try. It seems like the best FOSS find my device type service available by far.