Ultima attività 2 days ago

Revisione 1a33db36086803580dcadedcceba0f1bd8f3d11e

README.md Raw
  1. Create a new ARM server (CAX41 | arm | 320 GB | eu-central) from app image: Docker CE
  2. SSH in
  3. Run the above
build-iris-docker-image.sh Raw
1#! /usr/bin/env bash
2
3# install git
4apt update
5apt install -y git
6
7# download and prepare Iris for build
8git clone --depth=1 https://github.com/jaedb/Iris.git
9cd Iris
10
11# login, build and push
12docker login
13docker buildx build --platform linux/arm64 -t curiousercreative/iris:latest --push .
14
15# slim the PIP packages, build and push a slim tag
16cat << EOF > docker/requirements.txt
17Mopidy-Local
18Mopidy-Mpd
19EOF
20docker buildx build --platform linux/arm64 -t curiousercreative/iris:slim --push .