Last active
January 30, 2018 10:14
-
-
Save azizasm/a20ed88c2ce078417d167264908f1f3d to your computer and use it in GitHub Desktop.
Openemr dockers - play-with-docker.com
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
# run openemr from dockers - play-with-docker.com | |
# to run : http://play-with-docker.com/?stack=https://gist.githubusercontent.com/azizasm/a20ed88c2ce078417d167264908f1f3d/raw/1152b4083089cd1c8065538d81be3e58c52eaaa5/docker-compose.yml | |
# Use root/example as user/password credentials | |
version: '3.1' | |
services: | |
mysql: | |
restart: always | |
image: mysql | |
command: ['mysqld','--character-set-server=utf8'] | |
environment: | |
MYSQL_ROOT_PASSWORD: root | |
openemr: | |
restart: always | |
image: openemr/openemr | |
ports: | |
- 80:80 | |
volumes: | |
- logvolume01:/var/log | |
- sitevolume:/var/www/localhost/htdocs/openemr/sites/default | |
environment: | |
MYSQL_HOST: mysql | |
MYSQL_ROOT_PASS: root | |
MYSQL_USER: root | |
MYSQL_PASS: root | |
OE_USER: admin | |
OE_PASS: pass | |
links: | |
- mysql | |
volumes: | |
logvolume01: {} | |
sitevolume: {} |
Author
azizasm
commented
Jan 29, 2018
To run :
Open
- http://play-with-docker.com/?stack=https://gist.githubusercontent.com/azizasm/a20ed88c2ce078417d167264908f1f3d/raw/docker-compose.yml
- Wait until fully loaded
- Open the link in the PDW session -
80
- Username / Pass : admin/pass
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment