Skip to content

Commit 1395189

Browse files
authored
Merge pull request #21 from alpaim/master
docs: add Docker Compose example to README
2 parents e318348 + 1344bfa commit 1395189

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

readme.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,20 @@ ghcr.io/oppiliappan/lurker latest ba3733164889 ??? 227MB
7070
$ docker run -v /your/host/lurker-data:/data -p 3000 ghcr.io/oppiliappan/lurker:latest
7171
```
7272

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+
7387
or with just [bun](https://bun.sh/):
7488
7589
```bash

0 commit comments

Comments
 (0)