Media Server
Internal URL: http://192.168.1.240:32400
External URL: https://plex.risingflow.com:32400
GitHub: https://github.com/linuxserver/docker-plex
Docker Compose:
plex:
image: lscr.io/linuxserver/plex:latest
container_name: plex
network_mode: host
runtime: nvidia
environment:
- PUID=1001
- PGID=1001
- TZ=Pacific/Auckland # Adjusted to New Zealand Timezone
- VERSION=docker
- NVIDIA_VISIBLE_DEVICES=all
volumes:
- ./config:/config # Adjust this to where you want to store Plex configuration
- /mnt/tvshows:/tv # Mounted TV shows directory
- /mnt/movies:/movies # Mounted movies directory
- /mnt/downloads:/downloads # Mounted downloads directory (if you want to use it)
restart: always