@ComradeMiao to SelfhostedEnglish • 1 month agoYour favorite lesser known docker container?message-square76arrow-up1148arrow-down16file-text
arrow-up1142arrow-down1message-squareYour favorite lesser known docker container?@ComradeMiao to SelfhostedEnglish • 1 month agomessage-square76file-text
minus-squareblue lionlinkfedilinkEnglish4•1 month agothe 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-square@[email protected]linkfedilinkEnglish2•1 month agoAwesome, thanks. I’m going to give it a try. It seems like the best FOSS find my device type service available by far.
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:
Awesome, thanks. I’m going to give it a try. It seems like the best FOSS find my device type service available by far.