diff options
-rw-r--r-- | readme.md | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -54,7 +54,23 @@ services.lurker = { | |||
54 | }; | 54 | }; |
55 | ``` | 55 | ``` |
56 | 56 | ||
57 | for non-nixos users: | 57 | or with the docker image: |
58 | |||
59 | ```bash | ||
60 | # pull the latest image from gh container registry | ||
61 | $ docker pull ghcr.io/oppiliappan/lurker:latest | ||
62 | |||
63 | # the image will be marked as created on 1970, this is a | ||
64 | # quirk of using nix, it should not affect usage | ||
65 | $ docker image ls | ||
66 | REPOSITORY TAG IMAGE ID CREATED SIZE | ||
67 | ghcr.io/oppiliappan/lurker latest ba3733164889 54 years ago 186MB | ||
68 | |||
69 | # start lurker in a container | ||
70 | $ docker run ghcr.io/oppiliappan/lurker:latest | ||
71 | ``` | ||
72 | |||
73 | or with just [bun](https://bun.sh/): | ||
58 | 74 | ||
59 | ```bash | 75 | ```bash |
60 | bun run src/index.js | 76 | bun run src/index.js |