2 # This is for building a local OpenEMR development and testing environment.
3 # (Recommend not running it from your git repo and instead mirroring your
4 # git repo to a testing directory (such as your web directory).)
6 # Brief instructions on how to use (for fuller instructions and examples,
7 # see the document at contrib/util/docker/README.md):
8 # 1. docker-compose up -d
9 # 2. http://localhost:8080 to run setup in openemr (alpine 3.7 with PHP 7.1)
11 # https://localhost:8090 to run setup in openemr with SSL (alpine 3.7 with PHP 7.1)
13 # http://localhost:8081 to run setup in openemr (alpine edge with PHP 7.2)
15 # https://localhost:8091 to run setup in openemr with SSL (alpine edge with PHP 7.2)
16 # On the main setup input screen:
17 # 1. for Server Host, use either 'mariadb' or 'mysql' or `mariadb-dev` or 'mysql-dev' or 'mysql-old' or 'mysql-very-old' or 'mariadb-old' or 'mariadb-very-old' or 'mariadb-very-very-old' (have both mariadb/mysql/mariadb-dev/mysql-dev dockers ready to go make testing either one easy; mysql is version 5.7; mysql-dev is version 8; mysql-old is version 5.6; mysql-very-old is version 5.5; mariadb is version 10.2 and mariadb-dev is version 10.3; mariadb-old is version 10.1; mariadb-very-old is version 10.0; mariadb-very-very-old is version 5.5)
18 # 2. for Root Pass, use 'root'
19 # 3. for User Hostname, use '%'
20 # And when need to tear it down and restart it
21 # 1. docker-compose down -v
22 # 2. docker-compose up -d
23 # Can see databases via http://localhost:8100
29 image: openemr/openemr:flex
34 - .:/var/www/localhost/htdocs/openemr
39 image: openemr/openemr:flex-edge
44 - .:/var/www/localhost/htdocs/openemr
50 command: ['mysqld','--character-set-server=utf8']
52 MYSQL_ROOT_PASSWORD: root
56 command: ['mysqld','--character-set-server=utf8']
58 MYSQL_ROOT_PASSWORD: root
62 command: ['mysqld','--character-set-server=utf8']
64 MYSQL_ROOT_PASSWORD: root
68 command: ['mysqld','--character-set-server=utf8','--default-authentication-plugin=mysql_native_password']
70 MYSQL_ROOT_PASSWORD: root
74 command: ['mysqld','--character-set-server=utf8']
76 MYSQL_ROOT_PASSWORD: root
80 command: ['mysqld','--character-set-server=utf8']
82 MYSQL_ROOT_PASSWORD: root
83 mariadb-very-very-old:
86 command: ['mysqld','--character-set-server=utf8']
88 MYSQL_ROOT_PASSWORD: root
92 command: ['mysqld','--character-set-server=utf8']
94 MYSQL_ROOT_PASSWORD: root
98 command: ['mysqld','--character-set-server=utf8']
100 MYSQL_ROOT_PASSWORD: root
103 image: phpmyadmin/phpmyadmin
107 PMA_HOSTS: mariadb,mysql,mariadb-dev,mysql-dev,mysql-old,mysql-very-old,mariadb-old,mariadb-very-old,mariadb-very-very-old
116 COUCHDB_PASSWORD: password
119 image: jodogne/orthanc-plugins