You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 

24 lines
438 B

---
version: "3"
volumes:
plex_data: { }
services:
plex:
image: linuxserver/plex:version-1.23.3.4707-ebb5fe9f3
container_name: plex
hostname: plex
restart: unless-stopped
volumes:
- plex_data:/config
- ./etc/music:/media/music
- ./etc/podcast:/media/podcast
- ./etc/video:/media/video
network_mode: host
environment:
- PUID=1026
- PGID=100
- VERSION=docker
...