We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db7b86b + f9cb76b commit 362a54cCopy full SHA for 362a54c
.github/workflows/_docker.yml
@@ -25,7 +25,23 @@ jobs:
25
- name: 'Set up Docker Buildx'
26
uses: docker/setup-buildx-action@v3
27
28
- - name: 'Build Postgres Image'
+ - name: 'Build Postgres Image for linux/amd64'
29
+ run: |
30
+ docker build \
31
+ -f Dockerfile.postgres \
32
+ --platform linux/amd64 \
33
+ -t ghcr.io/trycompa/postgres:${{ inputs.tag }}-linux-amd64 \
34
+ --push .
35
+
36
+ - name: 'Build Postgres Multi-Architecture Image'
37
38
+ docker buildx build \
39
40
+ --platform linux/arm64 \
41
+ -t ghcr.io/trycompa/postgres:${{ inputs.tag }}-linux-arm64 \
42
43
44
45
run: |
46
docker buildx build \
47
-f Dockerfile.postgres \
0 commit comments