https://github.com/uesteibar/mediacenter-compose
A docker setup to run a simple media center
https://github.com/uesteibar/mediacenter-compose
docker docker-compose media-server plex torrent
Last synced: 2 months ago
JSON representation
A docker setup to run a simple media center
- Host: GitHub
- URL: https://github.com/uesteibar/mediacenter-compose
- Owner: uesteibar
- Created: 2017-12-21T15:38:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-18T16:55:28.000Z (about 7 years ago)
- Last Synced: 2025-01-11T11:47:40.685Z (4 months ago)
- Topics: docker, docker-compose, media-server, plex, torrent
- Language: HTML
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mediacenter-compose
A docker setup to run a simple media center.
## Running locally
Clone the repo
```
git clone https://github.com/uesteibar/mediacenter-compose.git && cd mediacenter-compose
```Copy the `.env` file and customize the domain names
```
cp .env.sample .env
```Setup the environment
You can set your download folders by using the `DOWNLOADS_FOLDER` env variable (default is `~/mediacenter/downloads`)
```
DOWNLOADS_FOLDER=/path/to/folder ./setup.sh
```Run the containers
```
DOWNLOADS_FOLDER=/path/to/folder docker-compose up -d
```You can now access:
* [plex.localhost](http://plex.localhost) for your **Plex** server (if you have any issue with streaming quality, you can fallback to `ip-address:3001`).
* [torrent.localhost](http://torrent.localhost) for your **transmission** client.
* [sonarr.localhost](http://sonarr.localhost) for your **sonarr** server.## Roadmap
* [x] Use [nginx](https://hub.docker.com/_/nginx/) for routing to avoid always writing the port.
* [ ] Add support for automatically downloading torrents from RSS feed.