PCM provides service to manage patient provider lists and enables them to manage their e-consents.
10K+
Dockerfile LinkFor more information about this image, the source code, and its history, please see the GitHub repository.
The Patient Consent Management (PCM) Service is one of the core components of the Consent2Share (C2S) application. The PCM provides service for patients to manage their electronic consents including consent create, consent edit, consent delete, consent eSignature and patient provider list management. An electronic patient consent is a digital agreement created and electronically signed by the patient to do the following:
For more information and related downloads for Consent2Share, please visit Consent2Share.
Be sure to familiarize yourself with the repository's README.md file before starting the instance.
docker run --name pcm -d bhits/pcm:latest <additional program arguments>
NOTE: In order for this Service to fully function as a microservice in the Consent2Share application, it is required to setup the dependency microservices and the support level infrastructure. Please refer to the Consent2Share Deployment Guide in the corresponding Consent2Share release (see Consent2Share Releases Page) for instructions to setup the Consent2Share infrastructure.
The Spring profiles application-default and docker are activated by default when building images.
This service can run with the default configuration which is from three places: bootstrap.yml, application.yml, and the data which the Configuration Server reads from the Configuration Data Git Repository. Both bootstrap.yml and application.yml files are located in the class path of the running application.
docker run -d bhits/pcm:latest --spring.datasource.password=strongpassword
When you start the PCM image, you can edit the configuration of the PCM instance by passing one or more environment variables on the command line.
This environment variable is used to setup which jar file will run. you need mount the jar file to the root of container.
docker run --name pcm -e JAR_FILE="pcm-latest.jar" -v "/path/on/dockerhost/pcm-latest.jar:/pcm-latest.jar" -d bhits/pcm:latest
This environment variable is used to setup JVM argument, such as memory configuration.
docker run --name pcm -e "JAVA_OPTS=-Xms512m -Xmx700m -Xss1m" -d bhits/pcm:latest
This environment variable is used to setup an application argument. The default value is "--spring.profiles.active=application-default, docker".
docker run --name pcm -e DEFAULT_PROGRAM_ARGS="--spring.profiles.active=application-default,ssl,docker" -d bhits/pcm:latest
This image is officially supported on Docker version 1.13.0.
Support for older versions (down to 1.6) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
View license information for the software contained in this image.
Documentation for this image is stored in the bhits/pcm GitHub repository. Be sure to familiarize yourself with the repository's README.md file before attempting a pull request.
If you have any problems with or questions about this image, please contact us through a GitHub issue.
Content type
Image
Digest
Size
178.9 MB
Last updated
over 9 years ago
docker pull bhits/pcm