diff options
author | akshay <[email protected]> | 2025-01-05 19:32:18 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2025-01-05 19:32:18 +0000 |
commit | 139518960bfa3105c257dc4c7f630b0bd4205bf3 (patch) | |
tree | cfa445fb209933a6c4323fc9f5bfe9671821cfca | |
parent | e318348818a759531424cab414ebfa7b102f12c3 (diff) | |
parent | 1344bfa7bb45835081fbd0619e8e166dd0400b1d (diff) |
Merge pull request #21 from alpaim/master
docs: add Docker Compose example to README
-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 |