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.
24 lines
438 B
24 lines
438 B
---
|
|
version: "3"
|
|
|
|
volumes:
|
|
plex_data: { }
|
|
|
|
services:
|
|
plex:
|
|
image: linuxserver/plex:version-1.22.2.4282-a97b03fad
|
|
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
|
|
...
|