Hi,
I'm trying to download Jdownloader using the docker-compose on this link https://hub.docker.com/r/jaymoulin/jdownloader and following this tutorial
External Content
www.youtube.com
Content embedded from external sources will not be displayed without your consent.
Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.
Any help would be appreciated as I can't figure out what the problem is. I thought it was a permission error but I used Rest Permission on all the folders but that didn't help. The file location is correct because I can see all the files downloaded on the Config folder for Jdownloader.
Thank you
Code: My docker-compose file
version: "2.1"
services:
jdownloader:
image: jaymoulin/jdownloader
container_name: jdownloader
restart: always
user: 1000:100
volumes:
- /srv/dev-disk-by-uuid-b547c458-72ff-4fc3-a4d0-65940dde8b0d/Config/Jdownloader:/opt/JDownloader/app/cfg
- /srv/dev-disk-by-uuid-b547c458-72ff-4fc3-a4d0-65940dde8b0d/Files/Jdownloader:/opt/JDownloader/Downloads
- /etc/localtime:/etc/localtime:ro #optional
environment:
MYJD_USER: my_email
MYJD_PASSWORD: my_password
MYJD_DEVICE_NAME: RaspberryPi
XDG_DOWNLOAD_DIR: /opt/JDownloader/Downloads
ports:
- 3129:3129
Display More