Skip to content

Commit 0d2762c

Browse files
committed
Updated
1 parent 717d319 commit 0d2762c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/docker.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ jobs:
5555
- uses: int128/docker-manifest-create-action@v2
5656
id: manifest
5757
with:
58-
tags: ghcr.io/${{ github.repository }}:${{ matrix.version }}
58+
tags: |
59+
ghcr.io/${{ github.repository }}:${{ matrix.version }}
5960
sources: |
6061
ghcr.io/${{ github.repository }}-linux-amd64:${{ matrix.version }}
6162
ghcr.io/${{ github.repository }}-linux-arm64:${{ matrix.version }}

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ OS ?= $(shell uname | tr A-Z a-z)
77
VERSION ?= 17-bookworm
88

99
# Docker repository
10+
DOCKER_SOURCE ?= https://github.com/mutablelogic/docker-postgres
1011
DOCKER_REPO ?= ghcr.io/mutablelogic/docker-postgres
1112
BUILD_TAG = ${DOCKER_REPO}-${OS}-${ARCH}:${VERSION}
1213

@@ -19,7 +20,7 @@ docker: docker-dep
1920
--build-arg ARCH=${ARCH} \
2021
--build-arg OS=${OS} \
2122
--build-arg VERSION=${VERSION} \
22-
--build-arg SOURCE=${DOCKER_REPO} \
23+
--build-arg SOURCE=${DOCKER_SOURCE} \
2324
-f Dockerfile .
2425

2526
# Push the docker image

0 commit comments

Comments
 (0)