> For the complete documentation index, see [llms.txt](https://docs.klai.studio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.klai.studio/engineering-reference-docs/bf-enterprise-documentation/setting-up-the-server/restarting-policies.md).

# Restarting Policies

When starting pods, different restart policies can be set for them:

* no - default option;
* on-failure;
* always;
* unless-stopped;

More information can be found on this [link](https://docs.docker.com/config/containers/start-containers-automatically/).

An example of how to start a new pod using a restart policy would be:

{% code overflow="wrap" %}

```javascript
docker run -dp 80:80 --restart always --env-file yourEnvFile ourPublicRepo/betterforms:V0.10.84-bfe
```

{% endcode %}
