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
4 changes: 2 additions & 2 deletions OPERATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ can be executed against the database using the required environment variables li
Example usage:
```sh
$ docker run --rm -e PS_DB_OWNER_NAME=postgres -e POSTGRES_PASSWORD=super5ecret -e PS_DB_HOST=postgres -e PS_DB_PORT=5432 \
-v /path/to/uk_sct2mo_41.0.0_20250924000001Z.zip:/snomed/uk_sct2mo_41.0.0_20250924000001Z.zip \
nhsdev/nia-ps-snomed-schema /snomed/uk_sct2mo_41.0.0_20250924000001Z.zip
-v /path/to/uk_sct2mo_42.0.0_20260408000001Z.zip:/snomed/uk_sct2mo_42.0.0_20260408000001Z.zip \
nhsdev/nia-ps-snomed-schema /snomed/uk_sct2mo_42.0.0_20260408000001Z.zip
```

#### First installation
Expand Down
2 changes: 1 addition & 1 deletion docker/example.vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ export SDS_BASE_URL="https://int.api.service.nhs.uk/spine-directory/FHIR/R4/"

export SKIP_DECODE="false"
#change path for snomedFile fath
#export SNOMED_CT_TERMINOLOGY_FILE="/mnt/c/Users/yourUserName/yourPath/uk_sct2mo_41.0.0_20250924000001Z.zip";
#export SNOMED_CT_TERMINOLOGY_FILE="/mnt/c/Users/yourUserName/yourPath/uk_sct2mo_42.0.0_20260408000001Z.zip";
2 changes: 1 addition & 1 deletion docker/release-scripts/ps-mhs-e2e/vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#SECRET KEY VARS
#User-specific env variables
export SNOMED_FILE_LOCATION="../uk_sct2mo_41.0.0_20250924000001Z.zip"
export SNOMED_FILE_LOCATION="../uk_sct2mo_42.0.0_20260408000001Z.zip"

export MHS_SECRET_PARTY_KEY="Y90664-9198273"
export MHS_SECRET_CLIENT_CERT="-----BEGIN CERTIFICATE-----
Expand Down
2 changes: 1 addition & 1 deletion snomed-database-loader/load_release-postgresql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ isMonolith=false

if [ -z ${releasePath} ]
then
echo "Please set the path to zipped SnomedCT RF2 release as the first argument, e.g. ./load_release-postgresql.sh uk_sct2mo_41.0.0_20250924000001Z.zip"
echo "Please set the path to zipped SnomedCT RF2 release as the first argument, e.g. ./load_release-postgresql.sh uk_sct2mo_42.0.0_20260408000001Z.zip"
exit -1
fi

Expand Down
2 changes: 1 addition & 1 deletion test-suite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ If you want to start from a fresh DB, delete the volume with `docker volume rm t
SDS_API_KEY: "change_if_needed" # used for calculating migration timeouts

# Change path for SNOMED filepath
SNOMED_CT_TERMINOLOGY_FILE: "/snomed/file/location/uk_sct2mo_41.0.0_20250924000001Z.zip"
SNOMED_CT_TERMINOLOGY_FILE: "/snomed/file/location/uk_sct2mo_42.0.0_20260408000001Z.zip"

PS_LOGGING_LEVEL: "DEBUG"

Expand Down
2 changes: 1 addition & 1 deletion test-suite/docker/vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# MHS VARS
#SECRET KEY VARS
#User-specific env variables
export SNOMED_FILE_LOCATION="../uk_sct2mo_41.0.0_20250924000001Z.zip"
export SNOMED_FILE_LOCATION="../uk_sct2mo_42.0.0_20260408000001Z.zip"
export MHS_SECRET_PARTY_KEY="Y90664-9198273"
export MHS_SECRET_CLIENT_CERT="-----BEGIN CERTIFICATE-----
MIIFPTCCAyUCFAKYCULeFVcQCwXCGCiCFVu09NmzMA0GCSqGSIb3DQEBCwUAMF0x
Expand Down
Loading