From 87da487726c0f7d0a10eab5594b33582ccb34e91 Mon Sep 17 00:00:00 2001 From: Mick Cooney Date: Fri, 27 Oct 2023 19:20:33 +0100 Subject: [PATCH] Switching the container registry to GHCR --- .github/workflows/build_docker_image.yml | 8 ++++---- Makefile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_docker_image.yml b/.github/workflows/build_docker_image.yml index 0351b03..220a245 100644 --- a/.github/workflows/build_docker_image.yml +++ b/.github/workflows/build_docker_image.yml @@ -11,10 +11,10 @@ jobs: steps: - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub uses: docker/login-action@v3 @@ -24,7 +24,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: push: true - tags: kaybenleroll/btydbayes_investigation:latest + tags: ghcr.io/kaybenleroll/btydbayes_investigation:latest diff --git a/Makefile b/Makefile index c819024..3e92fc9 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ PROJECT_USER=kaybenleroll PROJECT_NAME=btydbayes-investigation PROJECT_TAG=latest -IMAGE_TAG=${PROJECT_USER}/${PROJECT_NAME}:${PROJECT_TAG} +IMAGE_TAG=ghcr.io/${PROJECT_USER}/${PROJECT_NAME}:${PROJECT_TAG} DOCKER_USER=rstudio DOCKER_PASS=CHANGEME