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

From FMR Knowledge Base
Jump to navigation Jump to search
(Created page with "__NOTOC__ '''This guide explains how to deploy FMR as a Docker Container .''' 300px Category:How_To")
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''This guide explains how to deploy FMR as a Docker Container .'''
+
'''This guide explains how to deploy FMR as a Docker Container.'''
 +
 
 +
[[File:Docker logo.png|100px]]
 +
 
 +
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/get-started Install Docker Desktop], start Docker'''
 +
 
 +
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
 +
 
 +
'''<nowiki>http://localhost:8080</nowiki>'''
 +
 
 +
* 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 [https://hub.docker.com/r/metadatatechnology/fmr-mysql Docker Hub].
 +
 
 +
 
 +
 
 +
 
 +
  
[[File:Docker logo.png|300px]]
 
  
  
Line 9: Line 57:
  
 
[[Category:How_To]]
 
[[Category:How_To]]
 +
[[Category:How_To V11]]

Revision as of 02:40, 3 November 2022

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 Install Docker Desktop, start Docker

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.