Open ithinktech opened 6 months ago
Did you ever find resolution to this issue? I am having the same problem.
I have tried:
For me that works without any issues:
kometateam/imagemaid:develop
-v "/pms/config/Library/Application Support/Plex Media Server:/plex:rw"
Thanks for the reply. This gave me what I needed. For others who may need this.
Not Working: Originally, I mapped plex to the base plex directory ie: /[docker]/plex/conf:/plex With the configuration directive of - PLEX_PATH="/[docker]/plex/database/Library/Application\ Support/Plex\ Media\ Server"
Bad example from docker-compose.yml
environment:
- PLEX_PATH="/docker/plex/database/Library/Application\ Support/Plex\ Media\ Server"
- MODE=report #Metadata Directory File changes will be reported but not performed.
volumes:
- /docker/pmm-clean/conf:/config
- /docker/plex/conf:/plex
Working: I just used the proper drive mapping and removed the PLEX_PATH line
Working example from docker-compose.yml
environment:
# - PLEX_PATH="/docker/plex/database/Library/Application\ Support/Plex\ Media\ Server"
- MODE=report #Metadata Directory File changes will be reported but not performed.
volumes:
- /docker/pmm-clean/conf:/config
- "/docker/plex/database/Library/Application\ Support/Plex\ Media\ Server:/plex"
Thank you so much for this, just went round in circles for an hour before seeing this. The docs could be clearer, that you only need one of these to be populated - either in the compose file OR in the .env file, not both.
The example compose file should really be working with the sample env file otherwise it's a bit of a mess!
It's not about docs, you don't have any other way to interchange dirs between two containers.
Version Number
1.0.2
What branch are you on?
master
Describe the Bug
Compose File:
.env file
Docker Log