Management Center | Fortified ID
HomeIntegrityControlSolutionsManagement Center
  • Introduction
  • The Service
    • Overview
    • About this release
      • Release notes
      • Breaking changes
    • Installation
      • Windows
      • Linux
      • Container - Docker
  • Upgrading
    • Windows
    • Container
  • Files and folders
    • config
    • bin
    • data\customer
    • other directories
  • User interface
    • Menu
    • Management
      • Overview
      • Memory and CPU
      • Runtime
      • Log
      • Manage version
  • Configuration
    • Resources
    • Cluster
    • Language
  • Operations
    • Air gapped mode
      • Windows
      • Container
    • Using an outbound proxy
    • Logs
    • Service customsations
    • User management
    • Application deployment
    • Encryption
    • Running a fixed version
Powered by GitBook
On this page
  1. The Service
  2. Installation

Container - Docker

Management center is deployed in conjunction with the controlled product.

PreviousLinuxNextUpgrading

Getting repo access

Ensure to follow steps at ensuring docker-repo access.

Start docker image using:

docker run -d
--name mgmt-access
--hostname mgmt-access
--read-only=false
-e XDG_CACHE_HOME=/tmp
-p 8443:8443/tcp
-p 4443:4443/tcp
fortifiedid.jfrog.io/docker/fortifiedid/fortified-mgmt-access:<version>
config/config.json
access_token=<access_token>

Example compose file with additional data:

services:
  mgmt-access:
    image: fortifiedid.jfrog.io/docker/fortifiedid/fortified-mgmt-access:<version>
    container_name: mgmt-access
    hostname: mgmt-access
    read_only: false
    environment:
      - XDG_CACHE_HOME=/tmp
      - FORTIFIED_SECRETS_KEY_SIZE=256
      - FORTIFIED_SECRETS_SECRET=c3b32a2764da3df1ec010097799e2d8f620212f3e012e205fea43f598ad7a318
    command:
      - "config/config.json"
      - access_token=
    ports:
      - "8443:8443/tcp"
      - "4443:4443/tcp"
    volumes:
      - ./customer:/opt/fortified/servers/mgmt-server/data/customer
      - ./repository:/opt/fortified/servers/mgmt-server/data/repository

https://docs.fortifiedid.se/installation