You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,13 +50,11 @@ LinkRouter includes a `docker-compose.yml` file for easy containerized deploymen
50
50
Create a `docker-compose.yml` file with the following content:
51
51
52
52
```yaml
53
-
version: "3.8"
54
-
55
53
services:
56
54
linkrouter:
57
55
image: ghcr.io/mxritzdev/linkrouter:latest
58
56
ports:
59
-
- "80:80"
57
+
- "80:8080"
60
58
volumes:
61
59
- ./data:/app/data
62
60
```
@@ -76,7 +74,7 @@ This will start the application and map port `80` on your local machine to port
76
74
Alternatively, you can run the application directly with a `docker run` command if you already have the image.
77
75
78
76
```bash
79
-
docker run -d -p 80:80 -v ./data:/app/data ghcr.io/mxritzdev/linkrouter:latest
77
+
docker run -d -p 80:8080 -v ./data:/app/data ghcr.io/mxritzdev/linkrouter:latest
80
78
```
81
79
82
80
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.
@@ -91,4 +89,4 @@ We welcome contributions! Please submit a pull request or open an issue to discu
91
89
92
90
## 📬 Contact
93
91
94
-
For questions or support, please reach out via discord at **moritzdev**
92
+
For questions or support, please reach out via discord at **mxritzdev**
0 commit comments