Skip to content

Deploy As A Docker Container

The easiest way to get started is to deploy FMR as a Docker container

A self-contained Fusion Metadata Registry image is available complete with a MySQL database suitable for testing, personal use and light production work loads.

1. Install Docker Desktop, start Docker

Execute the following commands using the Windows Command App, Windows PowerShell, Linux terminal or Mac terminal.

2. Pull the latest Fusion Metadata Registry image and start a container

docker run --name fmr -p 8080:8080 sdmxio/fmr-mysql:latest

Navigate to http://localhost:8080

  • The container will take between one and two minutes to start

  • There is a single Root User Account:

Username: root  
Password: password
  • Log in to administer the system, and create, load and maintain SDMX structures.

3. When finished - stop the container

docker stop fmr

Images for production deployment

The sdmxio/fmr-mysql image bundles everything needed for a minimal functional instance of FMR into a single container. While this is makes it simple to deploy for testing and personal use, for production it's recommended to compose a multi-container architure with sdmxio/fmr and a separate database service.

More on Docker Hub.