iSH App Linux for iOS - spaceshiptrip/iOS-stuff GitHub Wiki

Download iSH app then check out:

cat /etc/apk/repositories

Added:

http://dl-cdn.alpinelinux.org/alpine/v3.12/main http://dl-cdn.alpinelinux.org/alpine/v3.12/community 

Basically, I switched the repos' URLs back to default and it worked fine. However, this isn't an "official solution" - maybe I didn't see a better way to fix it.

there is a new link though:

http://dl-cdn.alpinelinux.org/alpine/v3.9/community/

Can add others?

http://dl-cdn.alpinelinux.org/alpine/v3.9/main/
http://dl-cdn.alpinelinux.org/alpine/v3.9/releases/

Not sure have to read up on the repo list meaning.


Tools to download:

apk update
apk upgrade

apk add busybox-extras

apk add nodejs
apk add npm

apk add git
apk add python3

Installing Docker

https://docs.genesys.com/Documentation/System/latest/DDG/InstallationofDockeronAlpineLinux

Installation of Docker on Alpine Linux

To install Docker on Alpine Linux, follow these steps:

To install Docker on Alpine Linux, run apk add docker. Important The Docker package is available in the Community repository. Therefore, if apk add fails because of unsatisfiable constraints error, you need to edit the /etc/apk/repositories file to add (or uncomment) a line. Community repository link: http://dl-cdn.alpinelinux.org/alpine/latest-stable/community. To index the repository, run apk update. To start the Docker daemon at boot, run rc-update add docker boot. To start the Docker daemon manually, run service docker start. Execute service docker status to ensure the status is running. For more details about installing Docker on Alpine, refer to https://wiki.alpinelinux.org/wiki/Docker#Installation.