An open API service indexing awesome lists of open source software.

https://github.com/engels74/otpravkarr-docker


https://github.com/engels74/otpravkarr-docker

docker-image

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Otpravkarr Docker Image (Nightly)

Nightly builds from the latest commit on `main`.

For full documentation, see the [release branch](https://github.com/engels74/otpravkarr-docker/tree/release).

## Environment Variables

### `OTPRAVKARR_SECRET` (required)

A stable secret of at least **32 characters** that persists across container restarts. The container will refuse to start if this variable is unset or too short.

> **Warning:** This value must remain stable. It derives the AES-GCM keys used to encrypt configuration (e.g. Plex admin token, Dispatcharr API key) and per-user Xtream passwords. If it changes, all previously-encrypted rows become permanently unreadable.

Generate one with:

```sh
openssl rand -base64 48
```

Then provide it via your compose file or an env file kept outside version control:

```yaml
environment:
- OTPRAVKARR_SECRET=
```