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 Windowsarrow-up-right.
Example for Unix/Linux:
cat ./password.txt | docker login fortifiedid.jfrog.io --username <username> --password-stdin
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.
stdout
Node
Start the Node module.
config/config.json
Use the given configuration file. Path is relative to SERVER_HOME inside the container.
SERVER_HOME
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/pwdresetarrow-up-right