Skip to content

Commit 6932981

Browse files
committed
Update README.md
1 parent 1012b0d commit 6932981

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ services:
5858
ports:
5959
- "80:80"
6060
volumes:
61-
- ./data:/data
61+
- ./data:/app/data
6262
```
6363
6464
### Running the Application with Docker Compose:
@@ -76,7 +76,7 @@ This will start the application and map port `5000` on your local machine to por
7676
Alternatively, you can run the application directly with a `docker run` command if you already have the image.
7777

7878
```bash
79-
docker run -d -p 80:80 -v ./data:/data ghcr.io/moritz-deiaco/linkrouter:latest
79+
docker run -d -p 80:80 -v ./data:/app/data ghcr.io/moritz-deiaco/linkrouter:latest
8080
```
8181

8282
This command runs the container in detached mode, binds port `80` on your local machine to port `80` in the container, and mounts the `/data` folder so the container can use your configuration.

0 commit comments

Comments
 (0)