aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Warner <[email protected]>2025-01-05 20:36:50 +0000
committerGitHub <[email protected]>2025-01-05 20:36:50 +0000
commitb3a86ca3d6cb1c776946bb38d67a76459c6d2b35 (patch)
treeae933e9c7f204e89ef479bd72a3a27e28b6c615c
parent9793c5e0ec707b967f770242b22950e1741341a6 (diff)
parent139518960bfa3105c257dc4c7f630b0bd4205bf3 (diff)
Merge branch 'master' into feat-card-view
-rw-r--r--readme.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index a3c4339..d13575c 100644
--- a/readme.md
+++ b/readme.md
@@ -70,6 +70,20 @@ ghcr.io/oppiliappan/lurker latest ba3733164889 ??? 227MB
70$ docker run -v /your/host/lurker-data:/data -p 3000 ghcr.io/oppiliappan/lurker:latest 70$ docker run -v /your/host/lurker-data:/data -p 3000 ghcr.io/oppiliappan/lurker:latest
71``` 71```
72 72
73or with docker compose:
74
75```yaml
76version: '3'
77services:
78 lurker:
79 image: ghcr.io/oppiliappan/lurker:latest
80 container_name: lurker
81 volumes:
82 - /your/host/lurker-data:/data
83 ports:
84 - "3000:3000"
85```
86
73or with just [bun](https://bun.sh/): 87or with just [bun](https://bun.sh/):
74 88
75```bash 89```bash