ComradeMiao@lemmy.world to Selfhosted@lemmy.worldEnglish · 10 days agoYour favorite lesser known docker container?message-squaremessage-square33fedilinkarrow-up140arrow-down11file-text
arrow-up139arrow-down1message-squareYour favorite lesser known docker container?ComradeMiao@lemmy.world to Selfhosted@lemmy.worldEnglish · 10 days agomessage-square33fedilinkfile-text
minus-squareblue lion@sh.itjust.workslinkfedilinkEnglisharrow-up1·10 days 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:
the only change I had to make was to add the config file to the volumes list:
compose.yml