Usage
cat > docker-compose.yml <<-'EOF'
# https://hub.docker.com/r/plexinc/pms-docker
# Port: 32400
version: "3"
services:
plex:
image: plexinc/pms-docker
network_mode: host
restart: always
volumes:
- $PWD/plex/config/:/config/
- $PWD/plex/transcode/:/transcode/
- <path/to/media>:/data/:ro
EOF
Start
docker-compose up --detach
Stop
docker-compose down
标签:detach,compose,--,Plex,docker,ro
From: https://www.cnblogs.com/newhappy98/p/17396660.html