Using a container

Prepare

Begin by obtaining authentication credentials from your Fortified ID representative. Use the credentials 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 pwdreset fortifiedid.jfrog.io/docker/fortifiedid/pwdreset:<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 sucessfully bootstrapped:

docker logs -f pwdreset

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

Last updated