> For the complete documentation index, see [llms.txt](https://docs.fortifiedid.se/password-reset/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fortifiedid.se/password-reset/password-reset-1_1/installation/using-a-container.md).

# 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](https://docs.docker.com/engine/reference/commandline/login/).

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:

<table><thead><tr><th width="317"></th><th></th><th data-hidden></th><th data-hidden></th></tr></thead><tbody><tr><td><code>-c</code></td><td>Direct system output to <code>stdout</code>. </td><td></td><td></td></tr><tr><td><code>Node</code></td><td>Start the <code>Node</code> module.</td><td></td><td></td></tr><tr><td><code>config/config.json</code></td><td>Use the given configuration file. Path is relative to <code>SERVER_HOME</code> inside the container.</td><td></td><td></td></tr></tbody></table>

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](http:/localhost:8080/pwdreset)
