Skip to content

Docker Compose

Docker Compose resources are published on the FMR public GitHub repo.

Clone the FMR repo

Start by cloning the repo:

git clone https://github.com/bis-medit-sdmxio/fmr.git

Find the required Compose configuration

Several Compose configurations are available. Choose the one best suited to your needs and change to that directory.

Initial start up

Step 1 - Start the containers.

docker compose up
Step 2 - Navigate to http://localhost:8179.

Step 3 - On the database connection page, accept the license agreement and click Next.

Step 4 - Choose a password for the 'root' superuser account and click Next.

Stop and restart

Use Ctrl-C to stop the running containers while preserving content and settings.

Restart:

docker compose up

Reinstall from scratch

docker compose rm -v # (1)  
docker volume rm fmr12_mysql_data # (2)  
docker compose up
  1. Remove the old containers.
  2. Remove the persistent volumes. Check the docker-compose.yml to discover precisely what volumes are configured.