Skip to content

Commit

Permalink
buildmaster: Bump frontend / backend containers to ghcr
Browse files Browse the repository at this point in the history
  • Loading branch information
kallisti5 committed Oct 31, 2023
1 parent 050af9b commit 248f074
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
9 changes: 5 additions & 4 deletions buildmaster/backend/Makefile
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
8 changes: 5 additions & 3 deletions buildmaster/frontend/Makefile
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

0 comments on commit 248f074

Please sign in to comment.