How to backup Layout Based Form? (LBF)

I installed via docker…

docker network create mynet
docker run --detach --name mysql --env “MYSQL_ROOT_PASSWORD=root” --net mynet mysql --character-set-server=utf8
docker run --detach -p 81:80 --name phpmyadmin --env “PMA_HOST=mysql” --net mynet phpmyadmin/phpmyadmin
docker run --detach -p 80:80 --name openemr --env “MYSQL_HOST=mysql” --env “MYSQL_ROOT_PASS=root” --net mynet openemr/openemr

To repro…

Sorry George but I’m not a docker expert and while I use windows docker, I always use an openemr image. Mostly the development-easy from openemr/docker directory.
Have you looked into https://hub.docker.com/r/openemr/openemr/?

Yes 7.02… openemr/openemr latest

Likely an issue with mariadb client on alpine linux connecting to mysql database (since those tools use alpine linux client rather than the standard openemr database connector).

For the older mysql 8.* versions have needed to do the following for it to work (--default-authentication-plugin=mysql_native_password):

Recommend the following for a starting point for 7.0.2 when using the production openemr dockers:

1 Like