Skip to content

Commit

Permalink
Removing arm/v7 until I figure out a fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flosoft authored Nov 19, 2023
1 parent 47b7ab8 commit abca772
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
-
name: Docker meta
id: docker_meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: florider89/joplin-server # list of Docker images to use as base name for tags
tags: |
Expand All @@ -38,25 +38,26 @@ jobs:
latest=true
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
#env:
# NODE_OPTIONS: --max-old-space-size=8192
with:
context: ./joplin/
file: ./joplin/Dockerfile.server
platforms: linux/amd64,linux/arm64,linux/arm/v7
#platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
Expand Down

0 comments on commit abca772

Please sign in to comment.