diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 90d1028..ced9de3 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -51,7 +51,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6 + platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6, linux/ppc64le build-args: | CORE_VERSION=development WEB_VERSION=devel diff --git a/.github/workflows/test-and-build.yaml b/.github/workflows/test-and-build.yaml index c83a5f5..e3fbf4b 100644 --- a/.github/workflows/test-and-build.yaml +++ b/.github/workflows/test-and-build.yaml @@ -57,7 +57,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6 + platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6, linux/ppc64le build-args: | PIHOLE_VERSION=${{ env.TAG }} push: true diff --git a/.github/workflows/workflow_dispatch.yml b/.github/workflows/workflow_dispatch.yml index 651efd8..1fb4699 100644 --- a/.github/workflows/workflow_dispatch.yml +++ b/.github/workflows/workflow_dispatch.yml @@ -62,7 +62,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6 + platforms: linux/amd64, linux/arm64, linux/386, linux/arm/v7, linux/arm/v6, linux/ppc64le build-args: | CORE_VERSION=${{ github.event.inputs.core }} WEB_VERSION=${{ github.event.inputs.web }} diff --git a/install.sh b/install.sh index 8c1affb..6091cfe 100644 --- a/install.sh +++ b/install.sh @@ -20,6 +20,8 @@ s6_download_url() { S6_ARCH="aarch64";; i386) S6_ARCH="x86";; + ppc64el) + S6_ARCH="ppc64le";; esac echo "https://github.com/just-containers/s6-overlay/releases/download/${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.gz" }