Tutorial #014: Deploying Bloomreach XM and XIN Mods with Docker
in Bloomreach XM Tutorials,
by Marnix Kok
last published on 12 August 2022
In this video we're going to use Docker to deploy a Bloomreach XM with XIN Mods instance, within just a few minutes!
Watch the video below, and find the docker-compose.yml configuration at the bottom of the page.
docker-compose.yml
version: '3' services: mysql: image: xinsolutions/bloomreach-xinmods-mysql-preseed 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: