Skip to content

Commit

Permalink
Fix image architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
chipp committed Feb 16, 2024
1 parent 21bf3d4 commit 2d8d002
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ jobs:

strategy:
matrix:
binary: [alisa, elisa, elizabeth, isabel]
include:
- binary: alisa
arch: linux/arm64
- binary: elisa
arch: linux/amd64
- binary: elizabeth
arch: linux/arm64
- binary: isabel
arch: linux/amd64

steps:
- uses: actions/checkout@v4
Expand All @@ -30,6 +38,7 @@ jobs:
docker buildx build . --file bin/${{ matrix.binary }}/Dockerfile \
--push \
--platform ${{ matrix.arch }} \
--tag $IMAGE_ID:latest \
--build-arg VERSION="0.1.${{ github.run_number }}" \
--label "org.opencontainers.image.source=https://github.com/${{ github.repository }}" \
Expand Down
4 changes: 2 additions & 2 deletions conf/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ services:
restart: unless-stopped
networks:
default:
external:
name: nginxproxy_default
name: nginx-proxy_default
external: true

0 comments on commit 2d8d002

Please sign in to comment.