selfhostable, read-only reddit client
16
fork

Configure Feed

Select the types of activity you want to include in your feed.

add docker compose example

authored by

Alpaim and committed by
GitHub
1344bfa7 e3183488

+14
+14
readme.md
··· 70 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 87 or with just [bun](https://bun.sh/): 74 88 75 89 ```bash