Difference between revisions of "Quick start guide - Deploy as a Docker Container"

From FMR Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
  
 
A self-contained Fusion Metadata Registry image complete with a MySQL database suitable for testing, personal use and light production work loads.
 
A self-contained Fusion Metadata Registry image complete with a MySQL database suitable for testing, personal use and light production work loads.
 +
  
 
'''1. Install [https://www.docker.com/products/docker-desktopInstall Docker Desktop]'''
 
'''1. Install [https://www.docker.com/products/docker-desktopInstall Docker Desktop]'''
 +
 
Execute the following commands using the Windows Command App, Windows PowerShell, Linux terminal or Mac terminal.
 
Execute the following commands using the Windows Command App, Windows PowerShell, Linux terminal or Mac terminal.
 +
  
 
'''2. Download the Fusion Metadata Registry Docker image'''
 
'''2. Download the Fusion Metadata Registry Docker image'''
  
 
  docker pull metadatatechnology/fmr-mysql:latest
 
  docker pull metadatatechnology/fmr-mysql:latest
 +
  
 
'''3. Create a container called 'fmr''''
 
'''3. Create a container called 'fmr''''
  
 
  docker container create --name fmr --publish 8080:8080 metadatatechnology/fmr-mysql:latest
 
  docker container create --name fmr --publish 8080:8080 metadatatechnology/fmr-mysql:latest
 +
  
 
'''4. Start the container'''
 
'''4. Start the container'''
Line 24: Line 29:
 
  http://localhost:8080
 
  http://localhost:8080
  
The container will take between 1 and 2 minutes to start - so be patient!
+
* The container will take between 1 and 2 minutes to start - so be patient!
 +
 
 +
* There is a single Root User Account:
 +
    Username: root
 +
    Password: password
  
There is a single Root User Account:
+
* Log in to administer the system, and create, load and maintain SDMX structures.
Username: root
 
Password: password
 
  
Log in to administer the system, and create, load and maintain SDMX structures.
 
  
 
'''5. When finished - stop the container'''
 
'''5. When finished - stop the container'''

Revision as of 05:09, 8 March 2021

This guide explains how to deploy FMR as a Docker Container .

Docker logo.png

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


1. Install Docker Desktop

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


2. Download the Fusion Metadata Registry Docker image

docker pull metadatatechnology/fmr-mysql:latest


3. Create a container called 'fmr'

docker container create --name fmr --publish 8080:8080 metadatatechnology/fmr-mysql:latest


4. Start the container

docker start fmr

Point your browser at

http://localhost:8080
  • The container will take between 1 and 2 minutes to start - so be patient!
  • There is a single Root User Account:
   Username: root
   Password: password
  • Log in to administer the system, and create, load and maintain SDMX structures.


5. When finished - stop the container

docker stop fmr

More on Docker Hub.