Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/renovate.json.bak
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\\Chart.yaml|requirements.yaml$"
],
"aliases": {
"hmctspublic": "https://hmctspublic.azurecr.io/helm/v1/repo/"
"hmctsprod": "https://hmctsprod.azurecr.io/helm/v1/repo/"
}
},
"extends": [
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG APP_INSIGHTS_AGENT_VERSION=3.4.18

ARG PLATFORM=""

FROM hmctspublic.azurecr.io/base/java${PLATFORM}:21-distroless
FROM hmctsprod.azurecr.io/base/java${PLATFORM}:21-distroless

COPY lib/applicationinsights.json /opt/app/
COPY build/libs/dm-store.jar /opt/app/
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ Requires docker desktop running
#### To run the application:

Requires docker desktop running
You need to be logged in to Azure and have access to the ACR registry to pull the necessary containers for the application to run.
If you are not logged in, you can do so by running `az login` in your terminal.
Followed by `az acr login --name hmctsprod` to log in to the ACR registry


```bash
docker-compose -f docker-compose-dev.yml pull
Expand Down
4 changes: 2 additions & 2 deletions acb.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 1.0-preview-1
steps:
- id: pull-base-image-amd64
cmd: docker pull --platform linux/amd64 hmctspublic.azurecr.io/base/java:21-distroless && docker tag hmctspublic.azurecr.io/base/java:21-distroless hmctspublic.azurecr.io/base/java/linux/amd64:21-distroless
cmd: docker pull --platform linux/amd64 hmctsprod.azurecr.io/base/java:21-distroless && docker tag hmctsprod.azurecr.io/base/java:21-distroless hmctsprod.azurecr.io/base/java/linux/amd64:21-distroless
retries: 10
retryDelay: 5
when: ["-"]
Expand All @@ -18,7 +18,7 @@ steps:
- pull-base-image-amd64

- id: pull-base-image-arm64
cmd: docker pull --platform linux/arm64 hmctspublic.azurecr.io/base/java:21-distroless && docker tag hmctspublic.azurecr.io/base/java:21-distroless hmctspublic.azurecr.io/base/java/linux/arm64:21-distroless
cmd: docker pull --platform linux/arm64 hmctsprod.azurecr.io/base/java:21-distroless && docker tag hmctsprod.azurecr.io/base/java:21-distroless hmctsprod.azurecr.io/base/java/linux/arm64:21-distroless
retries: 10
retryDelay: 5
when:
Expand Down
10 changes: 5 additions & 5 deletions charts/dm-store/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ description: Helm chart for the HMCTS CDM Document Management APO
apiVersion: v2
name: dm-store
home: https://github.com/hmcts/document-management-store-app
version: 2.3.9
version: 2.3.10
maintainers:
- name: HMCTS Evidence Management Team
email: EvidenceManagement@HMCTS.NET
dependencies:
- name: java
version: 5.3.0
repository: oci://hmctspublic.azurecr.io/helm
repository: oci://hmctsprod.azurecr.io/helm
- name: blobstorage
version: 2.1.0
repository: oci://hmctspublic.azurecr.io/helm
repository: oci://hmctsprod.azurecr.io/helm
condition: blobstorage.enabled
- name: xui-webapp
version: ~1.0.6
repository: oci://hmctspublic.azurecr.io/helm
repository: oci://hmctsprod.azurecr.io/helm
condition: xui-webapp.enabled
- name: idam-pr
version: ~2.3.0
repository: oci://hmctspublic.azurecr.io/helm
repository: oci://hmctsprod.azurecr.io/helm
condition: idam-pr.enabled

2 changes: 1 addition & 1 deletion charts/dm-store/values.preview.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ xui-webapp:
nodejs:
imagePullPolicy: Always
releaseNameOverride: ${SERVICE_NAME}-xui-webapp
image: hmctspublic.azurecr.io/xui/webapp:latest
image: hmctsprod.azurecr.io/xui/webapp:latest
ingressHost: xui-${SERVICE_FQDN}
environment:
HEALTH_DOCUMENTS_API: https://${SERVICE_FQDN}/health
Expand Down
2 changes: 1 addition & 1 deletion charts/dm-store/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
java:
image: 'hmctspublic.azurecr.io/dm/store:latest'
image: 'hmctsprod.azurecr.io/dm/store:latest'
ingressHost: dm-store-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
readinessDelay: 40
readinessTimeout: 5
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- ccd-docker-azure-blob-data:/opt/azurite/folder

service-auth-provider-app:
image: hmctspublic.azurecr.io/rpe/service-auth-provider:latest
image: hmctsprod.azurecr.io/rpe/service-auth-provider:latest
environment:
- microserviceKeys_em_gw=AAAAAAAAAAAAAAAA
- microserviceKeys_ccd_case_disposer=AAAAAAAAAAAAAAAA
Expand Down