Skip to content

Instantly share code, notes, and snippets.

@marnixk
Created April 2, 2025 23:44
Show Gist options
  • Save marnixk/b95ffa28d7eeb8054a8a864e6954bef9 to your computer and use it in GitHub Desktop.
Save marnixk/b95ffa28d7eeb8054a8a864e6954bef9 to your computer and use it in GitHub Desktop.
brXM Quickstart Docker Compose file
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