From 1344bfa7bb45835081fbd0619e8e166dd0400b1d Mon Sep 17 00:00:00 2001 From: Alpaim <156456776+alpaim@users.noreply.github.com> Date: Sat, 4 Jan 2025 02:21:20 +0200 Subject: add docker compose example --- readme.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/readme.md b/readme.md index a3c4339..d13575c 100644 --- a/readme.md +++ b/readme.md @@ -70,6 +70,20 @@ ghcr.io/oppiliappan/lurker latest ba3733164889 ??? 227MB $ docker run -v /your/host/lurker-data:/data -p 3000 ghcr.io/oppiliappan/lurker:latest ``` +or with docker compose: + +```yaml +version: '3' +services: + lurker: + image: ghcr.io/oppiliappan/lurker:latest + container_name: lurker + volumes: + - /your/host/lurker-data:/data + ports: + - "3000:3000" +``` + or with just [bun](https://bun.sh/): ```bash -- cgit v1.2.3