diff options
author | Nick Warner <[email protected]> | 2025-01-05 20:36:50 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2025-01-05 20:36:50 +0000 |
commit | b3a86ca3d6cb1c776946bb38d67a76459c6d2b35 (patch) | |
tree | ae933e9c7f204e89ef479bd72a3a27e28b6c615c | |
parent | 9793c5e0ec707b967f770242b22950e1741341a6 (diff) | |
parent | 139518960bfa3105c257dc4c7f630b0bd4205bf3 (diff) |
Merge branch 'master' into feat-card-view
-rw-r--r-- | readme.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 | ||
73 | or with docker compose: | ||
74 | |||
75 | ```yaml | ||
76 | version: '3' | ||
77 | services: | ||
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 | |||
73 | or with just [bun](https://bun.sh/): | 87 | or with just [bun](https://bun.sh/): |
74 | 88 | ||
75 | ```bash | 89 | ```bash |