https://github.com/engels74/otpravkarr-docker
https://github.com/engels74/otpravkarr-docker
docker-image
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/engels74/otpravkarr-docker
- Owner: engels74
- License: gpl-3.0
- Created: 2026-04-10T14:22:16.000Z (3 months ago)
- Default Branch: release
- Last Pushed: 2026-05-12T04:43:53.000Z (about 2 months ago)
- Last Synced: 2026-05-12T06:32:22.609Z (about 2 months ago)
- Topics: docker-image
- Language: Dockerfile
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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=
```