knowledge/technology/applications/web/Overseerr.md

43 lines
874 B
Markdown
Raw Normal View History

2023-12-04 10:02:23 +00:00
---
obj: application
website: https://overseerr.dev
repo: https://github.com/sct/overseerr
---
2024-03-19 08:25:42 +00:00
2023-12-04 10:02:23 +00:00
# Overseerr
Overseerr is a request management and media discovery tool built to work with your existing [Plex](Plex.md) ecosystem.
There is also a Fork for [Jellyfin](Jellyfin.md) [here](https://github.com/Fallenbagel/jellyseerr)
2024-09-03 16:13:27 +00:00
![Screenshot](./overseerr.avif)
2023-12-04 10:02:23 +00:00
## Docker Compose
[Plex](Plex.md):
```yaml
version: '3'
services:
overseerr:
image: sctx/overseerr:latest
environment:
- TZ=Europe/Berlin
ports:
- 5055:5055
volumes:
- ./config:/app/config
restart: unless-stopped
```
[Jellyfin](Jellyfin.md):
```yaml
version: "3"
services:
jellyseerr:
image: fallenbagel/jellyseerr:latest
environment:
- TZ=Europe/Berlin
ports:
- 5056:5055
volumes:
- ./config:/app/config
restart: unless-stopped
```