⚰️ Update dead path (#1570)

This commit is contained in:
Manuel
2023-11-10 22:22:39 +01:00
committed by GitHub
parent 9d7a5abfd5
commit 786e6cae9b
2 changed files with 5 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ RUN mv _node_modules node_modules
EXPOSE $PORT EXPOSE $PORT
ENV PORT=${PORT} ENV PORT=${PORT}
ENV DATABASE_URL "file:./database/db.sqlite" ENV DATABASE_URL "file:/data/db.sqlite"
ENV NEXTAUTH_URL "http://localhost:3000" ENV NEXTAUTH_URL "http://localhost:3000"
ENV PORT 7575 ENV PORT 7575
ENV NEXTAUTH_SECRET NOT_IN_USE_BECAUSE_JWTS_ARE_UNUSED ENV NEXTAUTH_SECRET NOT_IN_USE_BECAUSE_JWTS_ARE_UNUSED

View File

@@ -16,7 +16,7 @@ const dockerRunCommand = `docker run \\
--restart unless-stopped \\ --restart unless-stopped \\
-p 7575:7575 \\ -p 7575:7575 \\
-v your-path/homarr/configs:/app/data/configs \\ -v your-path/homarr/configs:/app/data/configs \\
-v your-path/homarr/data:/app/database \\ -v your-path/homarr/data:/data \\
-v your-path/homarr/icons:/app/public/icons \\ -v your-path/homarr/icons:/app/public/icons \\
-d ghcr.io/ajnart/homarr:latest`; -d ghcr.io/ajnart/homarr:latest`;
@@ -31,7 +31,7 @@ services:
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ./homarr/configs:/app/data/configs - ./homarr/configs:/app/data/configs
- ./homarr/data:/app/database - ./homarr/data:/data
- ./homarr/icons:/app/public/icons - ./homarr/icons:/app/public/icons
ports: ports:
- '7575:7575'`; - '7575:7575'`;
@@ -165,7 +165,7 @@ export const StepUpdatePathMappings = ({ next }: { next: () => void }) => {
After the new modal has opened, make sure that "Path" has been selected at the top After the new modal has opened, make sure that "Path" has been selected at the top
</List.Item> </List.Item>
<List.Item> <List.Item>
In the container path, enter <Code>/app/database</Code> In the container path, enter <Code>/data</Code>
</List.Item> </List.Item>
<List.Item> <List.Item>
In the host path, enter a new path on your host system. Choose a similar path, but the In the host path, enter a new path on your host system. Choose a similar path, but the
@@ -182,7 +182,7 @@ export const StepUpdatePathMappings = ({ next }: { next: () => void }) => {
We are sadly not able to include upgrade guides for all kind of systems. If your system 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: was not listed, you should mount this new mounting point in your container:
</Text> </Text>
<Code>/app/database</Code> <Code>/data</Code>
</Tabs.Panel> </Tabs.Panel>
</Tabs> </Tabs>