HomarrH
Homarr2mo ago
31 replies
Mr.Gmail.Plodder

homarr.db

I've upgraded Homarr to v1.45.0. I can't see homarr.db anywhere and I'm unsure where to go next. Thoughts?

Running Homarr as a Docker container
Windows 11 OS

Compose:


services:
homarr:
container_name: homarr
image: ghcr.io/homarr-labs/homarr:latest
restart: unless-stopped
ports:
- "7575:7575"
volumes:
- ./data:/app/data
environment:
- NODE_ENV=production
- SECRET_ENCRYPTION_KEY= ..........

homarr_backup_watcher:
container_name: homarr_backup_watcher
build: .
restart: unless-stopped
depends_on:
- homarr
volumes:
- ./backup_loop.sh:/app/backup_loop.sh
# Optional if you want the watcher to see homarr.db
# - ./data:/app/data
command: sh /app/backup_loop.sh
Was this page helpful?