41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
# Server Pi
|
|
|
|
This Raspberry Pi hosts a full media management stack for personal use. It runs multiple Dockerized services and serves as the primary server for *arr stack operations and media requests.
|
|
|
|
The main purpose of this Pi is to handle media management, indexing, and user requests via a self-hosted gateway.
|
|
|
|
The services currently running are:
|
|
|
|
- **Nginx**: Reverse proxy and main landing page for available services. It routes requests to local services and handles path and host headers.
|
|
|
|
- **Ombi**: Media request management. Accessible at `http://<server-pi-ip>:3579`.
|
|
|
|
- **Sonarr**: TV show management and automation. Accessible internally on port `8989`.
|
|
|
|
- **Radarr**: Movie management and automation. Accessible internally on port `7878`.
|
|
|
|
- **Prowlarr**: Indexer management for *arr stack. Accessible internally on port `9696`.
|
|
|
|
- **Jellyseerr**: Media request interface for Plex. Accessible internally on port `5055`.
|
|
|
|
---
|
|
|
|
## Start services
|
|
|
|
```bash
|
|
docker compose up -d
|
|
```
|
|
|
|
## Check Logs
|
|
|
|
```bash
|
|
docker compose logs -f nginx
|
|
```
|
|
|
|
## Exec COntainer
|
|
|
|
```bash
|
|
docker exec -it <container_name> bash
|
|
```
|
|
|