https://github.com/glensc/raspberry-pi-plex-media-player
Raspberry Pi Plex Media Player
https://github.com/glensc/raspberry-pi-plex-media-player
kodi media-player plex raspberry raspberry-pi
Last synced: 2 months ago
JSON representation
Raspberry Pi Plex Media Player
- Host: GitHub
- URL: https://github.com/glensc/raspberry-pi-plex-media-player
- Owner: glensc
- License: mit
- Created: 2021-01-14T17:22:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-21T20:10:01.000Z (almost 3 years ago)
- Last Synced: 2025-01-24T08:24:50.917Z (4 months ago)
- Topics: kodi, media-player, plex, raspberry, raspberry-pi
- Language: Dockerfile
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Raspberry Pi Plex Media Player
Build Raspberry Pi Plex Media Player based on [Pi My Life Up blog post][1].
[1]: https://pimylifeup.com/raspberry-pi-plex-media-player/
## Buildings
It's recommended to use BuildKit to speed up and run jobs in parallel.
The build output in form of tar file is placed to directory `out`.
```shell
export DOCKER_BUILDKIT=1
docker build --platform=linux/arm . -o out
```Or use buildx, which has BuildKit already enabled:
```shell
docker buildx build --platform=linux/arm . -o out
```To build only specific target:
```sh
docker build --target=mkv-build .
docker build --target=qt-build .
```To build for a different platform:
```shell
docker build --target=qt-build --platform=linux/arm .
```