init
This commit is contained in:
40
README.md
Normal file
40
README.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# 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
|
||||
```
|
||||
|
Reference in New Issue
Block a user