mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 10:41:32 +00:00
Dockerfiles are updated with two key changes: - use streamline's official images as a base - replace two files related to mysql configuration A README.md file is added to the docker folder which details the changes, but the key difference is to limit binary logs to only the `streamline` database. This prevents additional system databases from being included, which the database sync tools do not (yet) support. An unrelated bugfix corrects the docker-compose image tag, specifying 'latest' instead of a previously hard-coded version.
5 lines
136 B
Docker
5 lines
136 B
Docker
FROM streamlinehealth/streamline:signalytic
|
|
|
|
COPY my.cnf /etc/mysql/my.cnf
|
|
COPY mysql-init.sh /var/www/html/.docker/mysql/mysql-init.sh
|