From 55e927779ad96355ea1be4b2e59f551222de3a8c Mon Sep 17 00:00:00 2001 From: Romain Date: Tue, 19 Apr 2016 14:00:43 +1000 Subject: [PATCH] Update README to point to Alpine CDN repository I ran into trouble installing `tini` from http://dl-1.alpinelinux.org/alpine/edge/community/ ```bash WARNING: Ignoring APKINDEX.83d1b7a5.tar.gz: No such file or directory ERROR: unsatisfiable constraints: tini (missing): required by: world[tini] The command '/bin/sh -c apk add --repository http://dl-1.alpinelinux.org/alpine/edge/community/ tini' returned a non-zero code: 1 ``` Updating to http://dl-1.alpinelinux.org/alpine/edge/community/ seems to fix it. Not sure if that's the right way but it worked me me. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e1fc62..a4b8411 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ your package manager): On Alpine Linux, you can use the following command to install Tini (currently available in `edge`): - apk add --update --repository http://dl-1.alpinelinux.org/alpine/edge/community/ tini + apk add --update --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ tini ### NixOS ###