12 lines
292 B
Plaintext
12 lines
292 B
Plaintext
|
#! /bin/sh
|
||
|
me=$(basename $(pwd))
|
||
|
podman rm $me
|
||
|
podman run \
|
||
|
--name $me \
|
||
|
--network host \
|
||
|
--tz US/Mountain \
|
||
|
--env VERSION=public \
|
||
|
--mount type=bind,src=/srv/sys/plex,dst=/config \
|
||
|
--mount type=bind,src=/srv/media,dst=/srv/media,readonly=true \
|
||
|
lscr.io/linuxserver/plex:latest
|