Skip to content

Instantly share code, notes, and snippets.

@chris-moreton
Last active August 20, 2019 15:44
Show Gist options
  • Save chris-moreton/0c1e8c496594f356bd53bfeac45d3cb3 to your computer and use it in GitHub Desktop.
Save chris-moreton/0c1e8c496594f356bd53bfeac45d3cb3 to your computer and use it in GitHub Desktop.

Modify DM store code to skip checksum comparison

//if (! checksum.equals(checksumDownload)) {
//    throw new FileStorageException(documentId, documentContentVersion.getId());
//}

Build local document management store app

./gradlew build -x test

Build local Docker image

docker build -t dm-store-local:1.0 .

Change sscs-docker dm-store.yml file to point to local docker image

dm-store:
  image: dm-store-local:1.0

Recreate dm-store container

bin/recreate-container.sh dm-store
@ryandac
Copy link

ryandac commented Aug 20, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment