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
+16-7Lines changed: 16 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,33 +23,42 @@ The easiest way to get started is to use the public version hosted at **[mc-mod-
23
23
24
24
This version is automatically built and deployed by Vercel directly from the `main` branch of this repository. You can view the [deployment history here](https://github.com/IsAvaible/AngularModUpdater/deployments/Production).
25
25
26
-
---
27
-
28
26
### 2\. Self-Hosting with Docker
29
27
30
28
You can also run the application on your own machine using Docker.
31
29
32
30
**Prerequisites:**
33
31
34
-
-[Git](https://git-scm.com/)
32
+
-[Git](https://git-scm.com/) (only required for building from source)
docker run --name minecraft-mod-updater -p 8080:8080 --restart unless-stopped minecraft-mod-updater
51
49
```
52
-
The application will be accessible at `http://localhost:8080`. The container will be called `minecraft-mod-updater` and will restart automatically unless stopped.
50
+
51
+
#### Option B: Use the Pre-built Image
52
+
53
+
For a faster setup, you can pull and run the pre-built image from the container registry to skip the manual build step.
docker run --name minecraft-mod-updater -p 8080:8080 --restart unless-stopped ghcr.io/isavaible/angularmodupdater:main
59
+
```
60
+
61
+
After using either method, the application will be accessible at `http://localhost:8080`. The container will be called `minecraft-mod-updater` and will restart automatically unless stopped.
0 commit comments