Using a container

Prepare

Use the credentials from Fortified Support to log in to the FortifiedID Docker Registry by any available method, see here for instructions on Unix/Linux and Windows.

Example for Unix/Linux:

cat ./password.txt | docker login fortifiedid.jfrog.io --username <username> --password-stdin

Verify

To verify the Docker setup, run the default Integrity server:

docker run -p 8080:8080 --detach --name tokens fortifiedid.jfrog.io/docker/fortifiedid/tokens-server:<version> -c Node config/config.json

Parameter explanation:

-c

Direct system output to stdout.

Node

Start the Node module.

config/config.json

Use the given configuration file. Path is relative to SERVER_HOME inside the container.

Check the log to ensure that the server was successfully bootstrapped:

docker logs -f tokens

Finally, check that the server is up and running by pointing your browser at http://localhost:8080

Last updated