-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buildmaster: Bump frontend / backend containers to ghcr
- Loading branch information
Showing
2 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# | ||
# CAREFUL HERE! The build context is the top level directory of git! | ||
# | ||
VERSION=1.2.8-1 | ||
REPO=ghcr.io/haikuports | ||
VERSION=1.2.8-2 | ||
default: | ||
docker build --no-cache --tag docker.io/haikuporter/buildmaster:${VERSION} -f Dockerfile ../.. | ||
docker build --no-cache --tag ${REPO}/haikuporter/buildmaster:${VERSION} -f Dockerfile ../.. | ||
push: | ||
docker push docker.io/haikuporter/buildmaster:${VERSION} | ||
docker push ${REPO}/haikuporter/buildmaster:${VERSION} | ||
enter: | ||
docker run -it docker.io/haikuporter/buildmaster:${VERSION} /bin/bash -l | ||
docker run -it ${REPO}/haikuporter/buildmaster:${VERSION} /bin/bash -l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
REPO=ghcr.io/haikuports | ||
VERSION=1.2.8-2 | ||
default: | ||
docker build --no-cache --tag docker.io/haikuporter/buildmaster-frontend:1.2.8-1 . | ||
docker build --no-cache --tag ${REPO}/haikuporter/frontend:${VERSION} . | ||
push: | ||
docker push docker.io/haikuporter/buildmaster-frontend:1.2.8-1 | ||
docker push ${REPO}/haikuporter/frontend:${VERSION} | ||
enter: | ||
docker run -it docker.io/haikuporter/buildmaster-frontend:1.2.8-1 /bin/sh -l | ||
docker run -it ${REPO}/haikuporter/frontend:${VERSION} /bin/sh -l |