minus-squareMysterious-Park9524@alien.topOPBtoSelf-Hosted Main@selfhosted.forum•Homarr not storing customizations.linkfedilinkEnglisharrow-up1·1 year agoHere is the docker-compose.yml file I used to set it up. In all my other container docker-compose.yml file persistent storage is contained in it: docker-compose.yml 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: - ./homarr/configs:/app/data/configs - ./homarr/icons:/app/public/icons ports: - ‘7575:7575’ So when I see /app/data/configs I assumed that was where the configuration changes are stored. Does your docker-compose file differ? Thanks for the feedback. Glenn… linkfedilink
Mysterious-Park9524@alien.topB to Self-Hosted Main@selfhosted.forumEnglish · 1 year agoHomarr not storing customizations.plus-squaremessage-squaremessage-square4fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1message-squareHomarr not storing customizations.plus-squareMysterious-Park9524@alien.topB to Self-Hosted Main@selfhosted.forumEnglish · 1 year agomessage-square4fedilink
Here is the docker-compose.yml file I used to set it up. In all my other container docker-compose.yml file persistent storage is contained in it:
docker-compose.yml
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:
- ./homarr/configs:/app/data/configs
- ./homarr/icons:/app/public/icons
ports:
- ‘7575:7575’
So when I see /app/data/configs I assumed that was where the configuration changes are stored.
Does your docker-compose file differ?
Thanks for the feedback.
Glenn…