You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
491 B
22 lines
491 B
# docker-compose.yml for travis ci testing |
|
version: '3.1' |
|
services: |
|
mysql: |
|
restart: always |
|
image: mariadb:10.6 |
|
command: ['mysqld','--character-set-server=utf8mb4'] |
|
environment: |
|
MYSQL_ROOT_PASSWORD: root |
|
openemr: |
|
restart: always |
|
image: openemr/openemr:flex-3.15-8 |
|
ports: |
|
- 80:80 |
|
- 443:443 |
|
volumes: |
|
- ../../:/var/www/localhost/htdocs/openemr |
|
environment: |
|
FORCE_NO_BUILD_MODE: "yes" |
|
EMPTY: "yes" |
|
depends_on: |
|
- mysql
|
|
|