I am having a bit of difficulty with the Medusa container.
It will not mount the external drives I specified in the compose file.
version: "2.1"
services:
medusa:
image: linuxserver/medusa
container_name: medusa
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- /appdata/medusa:/config
- /downloads/tv:/downloads
- /media/TV:/tv
ports:
- 8081:8081
restart: unless-stopped
I have verified the path and see no error when I run the compose file or start the container. Does anyone know what I might have done wrong? The volumes works for all my other containers.