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.
updated ci and insane dev env for php 8.2 and nodejs 16 (openemr#4778)
updated ci and insane dev env for php 8.2 and nodejs 16 (alpine 3.15 will be using nodejs 16 which will be planning to release docker 6.1.0 with)
- Loading branch information
1 parent
cb6ffee
commit ccc87a1
Showing
12 changed files
with
6,034 additions
and
15 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
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,33 @@ | ||
# 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/dev-php-fpm:8.2 | ||
environment: | ||
OPENEMR_BASE_URL_API: "https://nginx" | ||
OPENEMR_BASE_URL_E2E: "http://nginx" | ||
volumes: | ||
- ../../:/usr/share/nginx/html/openemr | ||
- ./php.ini:/usr/local/etc/php/php.ini:ro | ||
depends_on: | ||
- mysql | ||
nginx: | ||
restart: always | ||
image: openemr/dev-nginx | ||
ports: | ||
- 80:80 | ||
- 443:443 | ||
volumes: | ||
- ../../:/usr/share/nginx/html/openemr | ||
- ../nginx/nginx.conf:/etc/nginx/nginx.conf:ro | ||
- ../nginx/dummy-cert:/etc/nginx/dummy-cert:ro | ||
- ../nginx/dummy-key:/etc/nginx/dummy-key:ro | ||
depends_on: | ||
- openemr |
Oops, something went wrong.