diff --git a/src/components/Onboarding/step-update-path-mappings.tsx b/src/components/Onboarding/step-update-path-mappings.tsx index 7a1ef2173..5ddbf7f92 100644 --- a/src/components/Onboarding/step-update-path-mappings.tsx +++ b/src/components/Onboarding/step-update-path-mappings.tsx @@ -9,7 +9,7 @@ const dockerRunCommand = `docker run \\ --restart unless-stopped \\ -p 7575:7575 \\ -v your-path/homarr/configs:/app/data/configs \\ --v your-path/homarr/data:/app/prisma \\ +-v your-path/homarr/data:/app/database \\ -v your-path/homarr/icons:/app/public/icons \\ -d ghcr.io/ajnart/homarr:latest`; @@ -24,7 +24,7 @@ services: restart: unless-stopped volumes: - ./homarr/configs:/app/data/configs - - ./homarr/data:/app/prisma + - ./homarr/data:/app/database - ./homarr/icons:/app/public/icons ports: - '7575:7575'`; @@ -139,7 +139,7 @@ export const StepUpdatePathMappings = ({ next }: { next: () => void }) => { You're lucky. For installation without Docker on Windows and Linux, there are no additional steps required. However, be advised that your backups should start to include - the files located at /prisma too, if you run automatic backups. + the files located at /database too, if you run automatic backups. @@ -148,14 +148,14 @@ export const StepUpdatePathMappings = ({ next }: { next: () => void }) => { Click on your Homarr application and click "Edit" Scroll down and click on the link "Add another path, port, variable or device" After the new modal has opened, make sure that "Path" has been selected at the top - In the container path, enter /app/prisma + In the container path, enter /app/database In the host path, enter a new path on your host system. Choose a similar path, but the innermost directory should be different, than your existing mounting points (eg. /mnt/user/appdata/homarr/data) We are sadly not able to include upgrade guides for all kind of systems. If your system was not listed, you should mount this new mounting point in your container: - /app/prisma + /app/database