How to set up jellyseerr/jellyfin while using haugene open vpn

First of all I have very very limited coding experience. It took me 2 days to get the docker container working lol .now that it is the rr apps are confused about where to put the downloads. The error i get is “you are using docker, download client transmission places downloads in /downloads/complete/tv-sonarr but this directory does not exist in the container”. I get that its saying it cant store the downloads in the container but I was under the impression the container just hid traffic and the downloads would go to their intended destinations as if it wasn’t using the container. Any help would be appreciated as I have no clue what im doing.

On the Umbrel Discord … I helped someone else with this.

Those messages are here: Discord

It appears the key to success is to edit the docker-compose.yml file and add a media directory to your docker container where you want your media library to be stored on your local filesystem inside UmbrelOS.

The example that seems to work for my Test Environment was:

volumes:
- ${APP_DATA_DIR}/data/config:/config
- ${UMBREL_ROOT}/home/Downloads:/downloads
- /home/umbrel/umbrel/external/testdata:/media/Jellyfin

The /home/umbrel/umbrel/external/testdata above would be the filepath that you want to map to inside of the docker container.

Hope that helps.