How to restore boards-config
I'm moving homarr from my windows docker to my Linux docker, I downloaded my boards via the download all boards, I, incorrectly it seems, assumed just placing the json files in my new config directory /mnt/LinuxShare/Docker/Config would do the trick, but homarr doesn't seem em. What am I doing wrong?
Solution:Jump to solution
No it's probably the wrong path for config:
/app/data/configs
would be the correct one. Also the data one would be /data
instead of /app/data
5 Replies
Thank you for submitting a support request.
Depending on the volume of requests, our team should get in contact with you shortly.
⚠️ Please include the following details in your post or we may reject your request without further comment: - Log (See https://homarr.dev/docs/community/faq#how-do-i-open-the-console--log) - Operating system (Unraid, TrueNAS, Ubuntu, ...) - Exact Homarr version (eg. 0.15.0, not latest) - Configuration (eg. docker-compose, screenshot or similar. Use ``your-text`` to format) - Other relevant information (eg. your devices, your browser, ...)
❓ Frequently Asked Questions | Homarr documentation
Can I install Homarr on a Raspberry Pi?
Can you share your run configuration, also have you restarted the container after placing them there?
sure, my stack for docker is:
version: '3'
#---------------------------------------------------------------------#
Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
services:
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
- /mnt/LinuxShare/Config:/app/config
- /mnt/LinuxShare/icons:/app/public/icons
- /mnt/LinuxShare/data:/app/data
ports:
- '7575:7575'
yes i did restart after moving the files
I think i have just seen my own issue lol, i'm putting them in config and not docker/config
Solution
No it's probably the wrong path for config:
/app/data/configs
would be the correct one. Also the data one would be /data
instead of /app/data
ahh, thank you, i've updated the data folder, now just to find where docker puts /app/data/configs
or /data/config i assume it'll be now
its now working, tysm for your help 🙂