Last active
April 26, 2024 01:07
-
-
Save dnburgess/21e06a3443ea22610762bb853658ba30 to your computer and use it in GitHub Desktop.
DB Tech Orange HRM
This file contains hidden or 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
version: '2' | |
services: | |
mariadb: | |
image: mariadb | |
volumes: | |
- /srv/Databases/Orangehrm:/var/lib/mysql | |
environment: | |
- MYSQL_ROOT_PASSWORD=orangehrm | |
- MYSQL_ROOT_USER=root | |
- MYSQL_DATABASE=orangehrm | |
orangehrm: | |
image: orangehrm/orangehrm:latest | |
ports: | |
- 8181:80 | |
- 8443:443 | |
environment: | |
- ORANGEHRM_DATABASE_HOST=mariadb | |
- ORANGEHRM_DATABASE_USER=root | |
- ORANGEHRM_DATABASE_PASSWORD=orangehrm | |
- ORANGEHRM_DATABASE_NAME=orangehrm | |
- PUID=998 | |
- PGID=100 | |
volumes: | |
- /srv/Configs/Orangehrm:/orangehrm | |
depends_on: | |
- mariadb | |
links: | |
- mariadb:mariadb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment