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
403 B
24 lines
403 B
---
|
|
version: "3"
|
|
|
|
volumes:
|
|
plex_data: { }
|
|
|
|
services:
|
|
plex:
|
|
image: linuxserver/plex:version-1.22.1.4228-724c56e62
|
|
container_name: plex
|
|
hostname: plex
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
- plex_data:/config
|
|
- ./etc/music:/media/music
|
|
- ./etc/video:/media/video
|
|
|
|
network_mode: host
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- VERSION=docker
|
|
...
|