selfhostable, read-only reddit client

Merge pull request #21 from alpaim/master

docs: add Docker Compose example to README

authored by oppi.li and committed by

GitHub 13951896 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