forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: ci add mariadb 11.3, change mysql 8.2 to mysql 8.3 (openemr#7273)
- Loading branch information
1 parent
c04e485
commit eb1682f
Showing
3 changed files
with
120 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# docker-compose.yml for travis ci testing | ||
version: '3.1' | ||
services: | ||
mysql: | ||
restart: always | ||
image: mariadb:11.3 | ||
command: ['mariadbd','--character-set-server=utf8mb4'] | ||
environment: | ||
MYSQL_ROOT_PASSWORD: root | ||
openemr: | ||
restart: always | ||
image: openemr/openemr:flex-3.19 | ||
ports: | ||
- 80:80 | ||
- 443:443 | ||
volumes: | ||
- ../../:/var/www/localhost/htdocs/openemr | ||
environment: | ||
FORCE_NO_BUILD_MODE: "yes" | ||
EMPTY: "yes" | ||
depends_on: | ||
- mysql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters