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
This will start Plex using your mounted drive in /media path in Plex.
42
+
This will start Plex using your mounted drive in /media path in Plex (library volume not mounted will result in a container only library - this will be harder to fix).
43
43
44
44
```
45
45
docker run -d --restart=always --name plex -v /mnt/usbdrive:/media --net=host jaymoulin/plex
@@ -62,6 +62,24 @@ If you don't have Docker installed yet, you can do it easily in one line using t
As-of 1.1.0 (Plex 1.40.0) This image brings [ChuckPa/PlexDBRepair](https://github.com/ChuckPa/PlexDBRepair/) tool to help fixing errors on Plex databases.
68
+
If some error occurs and database is corrupted, you would be able to check/repair using this tool.
69
+
70
+
To use it, the plex service should be STOPPED. Then you can use the command `DBRepair` in the docker container with your Library volume mounted.
71
+
72
+
#### Docker CLI example
73
+
```shell
74
+
docker run --rm -v /mnt/usbdrive:/media -v /mnt/usbdrive:/root/Library jaymoulin/plex DBRepair
75
+
```
76
+
77
+
#### Docker Compose Example
78
+
```shell
79
+
docker compose stop plex
80
+
docker compose run plex DBRepair
81
+
```
82
+
65
83
### Known issues
66
84
67
85
#### libstdc++.so.6: cannot open shared object file
@@ -81,8 +99,3 @@ If you REALLY NEED Plex Tuner Service to work, please open an issue, or (better
81
99
#### Unknown file formats / "This server is not powerful enough to convert video"
82
100
83
101
Plex for Raspberry PI cannot read some video file format like AVI, WMV or OGM, either due to codec or due to RPI lack of power. You can convert them to make them compatible by using my docker image `jaymoulin/rpi-plex-video-converter` : https://github.com/jaymoulin/docker-rpi-plex-video-converter
84
-
85
-
#### How do I update?
86
-
87
-
Follow [@DockerPlex](https://twitter.com/DockerPlex) on Twitter to be alerted of updates!
0 commit comments