diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index eab46e7515..4fc90ca520 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -56,7 +56,7 @@ jobs: cron-docker: if: github.repository == 'Project-MONAI/MONAI' container: - image: localhost:5000/local_monai:stable # use currently latest, stable locally available docker image + image: localhost:5000/local_monai:dockerhub # use currently latest, locally available dockerhub image options: "--gpus all" runs-on: [self-hosted, linux, x64, common] steps: diff --git a/.github/workflows/setupapp.yml b/.github/workflows/setupapp.yml index 53653efe35..4f25fdc109 100644 --- a/.github/workflows/setupapp.yml +++ b/.github/workflows/setupapp.yml @@ -156,9 +156,9 @@ jobs: # build once more w/ tag "latest": remove flake package as it is not needed on hub.docker.com sed -i '/flake/d' requirements-dev.txt docker build -t projectmonai/monai:latest -f Dockerfile . - # also push as tag "stable" to local registry - docker build tag projectmonai/monai:latest localhost:5000/local_monai:stable - docker push localhost:5000/local_monai:stable + # also push as tag "dockerhub" to local registry + docker image tag projectmonai/monai:latest localhost:5000/local_monai:dockerhub + docker push localhost:5000/local_monai:dockerhub # distribute as always w/ tag "latest" to hub.docker.com docker login -u projectmonai -p ${{ secrets.DOCKER_PW }} docker push projectmonai/monai:latest