Radarr new docker installation not working

So I installed Radarr like this

docker run -d \
 --restart=always \
 --name radarr \
 -h radarr \
 -e PUID=1001 -e PGID=1001 \
 -e TZ=Europe/Nicosia \
 --net=network \
 -p 7878:7878 \
 -v radarr:/config \
 -v /mnt/media/movies:/movies \
 -v /mnt/media/downloads:/downloads \
 linuxserver/radarr

And I started adding all my existing movies. It got stuck and now I can’t access it, even after I restarted the container. The docker logs are full of errors, shown here.

https://paste.ofcode.org/eFBDTJDFEjmSqxcBq8rPb6

It’s a new installation. Any idea what could be causing this?

Thanks

Your volume mount for /config is wrong. You have to use the full path on the host side.

its strange that you would say that because this is how I have always been installing it. Sonarr also, and I’ve never had problems.