Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/docker-extra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,12 @@ jobs:
subject-name: ${{ env.REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}
subject-digest: ${{ steps.build_and_push_mlflow_ui.outputs.digest }}
push-to-registry: true

- name: Update Docker Hub description
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: ${{ env.DOCKER_IMAGE_NAME }}
readme-filepath: ./docker/mlflow/server/README.md
9 changes: 9 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,12 @@ jobs:
subject-name: ${{ env.REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}
subject-digest: ${{ steps.build_and_push_cms.outputs.digest }}
push-to-registry: true

- name: Update Docker Hub description
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: ${{ env.DOCKER_IMAGE_NAME }}
readme-filepath: ./README.md
2 changes: 2 additions & 0 deletions docker/mlflow/server/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## cogstack-mlflow-ui
A customised MLflow server configured for experiment tracking in CogStack projects.
Loading