aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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