Skip to content

Commit c712c34

Browse files
committed
Fix ghcr links in docker run commands
Both docker and podman default to :latest, which we don't support yet. [skip ci] Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
1 parent 0a8c7f4 commit c712c34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ server for embedded applications and IoT devices. Features:
104104

105105
```bash
106106
# Custom port and verbose logging
107-
docker run -p 8080:8080 ghcr.io/kernelkit/curios-httpd /usr/sbin/httpd -f -v -p 8080
107+
docker run -p 8080:8080 ghcr.io/kernelkit/curios-httpd /usr/sbin/httpd:edge -f -v -p 8080
108108
```
109109

110110
For more help, see the [BusyBox docs](https://busybox.net/downloads/BusyBox.html#httpd)
@@ -123,13 +123,13 @@ monitoring, and showing off your container infrastructure. Features:
123123

124124
```bash
125125
# Simple system info display
126-
docker run --rm ghcr.io/kernelkit/curios-neofetch
126+
docker run --rm ghcr.io/kernelkit/curios-neofetch:edge
127127

128128
# With host system access for accurate info
129-
docker run --rm -v /etc/os-release:/etc/os-release:ro ghcr.io/kernelkit/curios-neofetch
129+
docker run --rm -v /etc/os-release:/etc/os-release:ro ghcr.io/kernelkit/curios-neofetch:edge
130130

131131
# Get a shell instead
132-
docker run --rm -i -t --entrypoint /bin/bash ghcr.io/kernelkit/curios-neofetch
132+
docker run --rm -i -t --entrypoint /bin/bash ghcr.io/kernelkit/curios-neofetch:edge
133133
```
134134

135135
## Origin & References

0 commit comments

Comments
 (0)