You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,21 +38,25 @@ docker create \
38
38
39
39
*Special note* - If you'd like to run Plex without requiring `--net=host` then you will need the following ports in your `docker create` command:
40
40
41
+
```
41
42
-p 32400:32400 \
42
43
-p 32400:32400/udp \
43
44
-p 32469:32469 \
44
45
-p 32469:32469/udp \
45
46
-p 5353:5353/udp \
46
47
-p 1900:1900/udp
48
+
```
47
49
48
50
### User / Group Identifiers
49
51
50
52
Sometimes when using data volumes (`-v` flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user `PUID` and group `PGID`. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" <sup>TM</sup>.
51
53
52
54
In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as below:
0 commit comments