Created
April 2, 2025 23:44
-
-
Save marnixk/b95ffa28d7eeb8054a8a864e6954bef9 to your computer and use it in GitHub Desktop.
brXM Quickstart Docker Compose file
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: '3' | |
services: | |
mysql: | |
image: xinsolutions/bloomreach-xinmods-mysql | |
stdin_open: true | |
tty: true | |
restart: always | |
environment: | |
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' | |
volumes: | |
- mysql-data:/var/lib/mysql | |
brxm: | |
image: xinsolutions/bloomreach-xinmods-cms | |
stdin_open: true | |
tty: true | |
restart: always | |
environment: | |
- MYSQL_HOST=mysql | |
- MYSQL_DATABASE=bloomreach | |
- MYSQL_PORT=3306 | |
- MYSQL_USERNAME=root | |
- MYSQL_PASSWORD= | |
- BRXM_CMS_HOST=http://bloomreach.local | |
volumes: | |
- bloomreach-repo:/var/lib/hippostorage | |
links: | |
- 'mysql' | |
volumes: | |
bloomreach-repo: | |
mysql-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment