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
+43-2Lines changed: 43 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,41 @@ A self-hosted moving inventory tracker built with Blazor Server on .NET 10. Trac
29
29
**Persistence**
30
30
- Inventory is saved to a local `inventory.json` file — no database required
31
31
32
+
## Docker
33
+
34
+
The easiest way to run MoveIT is via Docker. The image is published to Docker Hub at [`ayeeandre/moveit`](https://hub.docker.com/r/ayeeandre/moveit).
35
+
36
+
**Run with Docker:**
37
+
```bash
38
+
docker run -d -p 8080:8080 --name moveit ayeeandre/moveit:latest
39
+
```
40
+
Then open `http://localhost:8080` in your browser.
41
+
42
+
**Run with Docker Compose:**
43
+
```yaml
44
+
services:
45
+
moveit:
46
+
image: ayeeandre/moveit:latest
47
+
ports:
48
+
- "8080:8080"
49
+
restart: unless-stopped
50
+
```
51
+
52
+
**Portainer:** Pull `ayeeandre/moveit:latest` and map host port `8080` → container port `8080`.
53
+
54
+
> **Note on persistence:** The inventory is stored inside the container at `/app/inventory.json`. To persist data across container restarts, mount a volume:
0 commit comments