diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index f5f7b4af..14c43b07 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -14,6 +14,8 @@ on: env: DOCKER_USER: 1001:127 + DOCKER_CONTAINER_REGISTRY_HOSTNAME: docker.io + DOCKER_CONTAINER_REGISTRY_NAMESPACE: lasuite jobs: build-and-push-backend: @@ -27,7 +29,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: lasuite/meet-backend + images: '${{ env.DOCKER_CONTAINER_REGISTRY_NAMESPACE }}/meet-backend' - name: Login to DockerHub if: github.event_name != 'pull_request' @@ -40,7 +42,7 @@ jobs: uses: numerique-gouv/action-trivy-cache@main with: docker-build-args: '--target backend-production -f Dockerfile' - docker-image-name: 'docker.io/lasuite/meet-backend:${{ github.sha }}' + docker-image-name: '${{ env.DOCKER_CONTAINER_REGISTRY_HOSTNAME }}/${{ env.DOCKER_CONTAINER_REGISTRY_NAMESPACE }}/meet-backend:${{ github.sha }}' - name: Build and push uses: docker/build-push-action@v6 @@ -63,7 +65,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: lasuite/meet-frontend + images: '${{ env.DOCKER_CONTAINER_REGISTRY_NAMESPACE }}/meet-frontend' - name: Login to DockerHub if: github.event_name != 'pull_request' @@ -76,7 +78,7 @@ jobs: uses: numerique-gouv/action-trivy-cache@main with: docker-build-args: '-f src/frontend/Dockerfile --target frontend-production' - docker-image-name: 'docker.io/lasuite/meet-frontend:${{ github.sha }}' + docker-image-name: '${{ env.DOCKER_CONTAINER_REGISTRY_HOSTNAME }}/${{ env.DOCKER_CONTAINER_REGISTRY_NAMESPACE }}/meet-frontend:${{ github.sha }}' - name: Build and push uses: docker/build-push-action@v6 @@ -100,7 +102,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: lasuite/meet-frontend-dinum + images: '${{ env.DOCKER_CONTAINER_REGISTRY_NAMESPACE }}/meet-frontend-dinum' - name: Login to DockerHub if: github.event_name != 'pull_request' @@ -113,7 +115,7 @@ jobs: uses: numerique-gouv/action-trivy-cache@main with: docker-build-args: '-f docker/dinum-frontend/Dockerfile --target frontend-production' - docker-image-name: 'docker.io/lasuite/meet-frontend-dinum:${{ github.sha }}' + docker-image-name: '${{ env.DOCKER_CONTAINER_REGISTRY_HOSTNAME }}/${{ env.DOCKER_CONTAINER_REGISTRY_NAMESPACE }}/meet-frontend-dinum:${{ github.sha }}' - name: Build and push uses: docker/build-push-action@v6 @@ -137,7 +139,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: lasuite/meet-summary + images: '${{ env.DOCKER_CONTAINER_REGISTRY_NAMESPACE }}/meet-summary' - name: Login to DockerHub if: github.event_name != 'pull_request'