nextgenhealthcare / connect-docker

Official Dockerfiles for Connect https://hub.docker.com/r/nextgenhealthcare/connect
Mozilla Public License 2.0
78 stars 51 forks source link

KEYSTORE_TYPE environment variable replacement bug #21

Closed cturczynskyj closed 5 months ago

cturczynskyj commented 2 years ago

The entrypoint script is replacing keystore.type in mirth.properties incorrectly. The replacement has:

sed -i "s/^keystore\.keypass\s*=\s*.*\$/keystore.type = ${KEYSTORE_TYPE//\//\\/}/" /opt/connect/conf/mirth.properties

but it should be:

sed -i "s/^keystore\.type\s*=\s*.*\$/keystore.type = ${KEYSTORE_TYPE//\//\\/}/" /opt/connect/conf/mirth.properties

pladesma commented 5 months ago

This has been fixed.