Closed lackylucky closed 1 year ago
Config is stored on a CIF Volume.
You mean CIFS ? How did you created the mount ? Are you sure that support for symbolic links is enabled ?
Hi @jlesage
You mean CIFS ?
Sorry, yes I mean CIFS.`
How did you created the mount ?
I create the mount in the docker compose file like this:
version: '3.0'
services:
jdownloader-2:
image: jlesage/jdownloader-2:v22.12.2
#image: jlesage/jdownloader-2:latest
ports:
- "5800:5800/tcp"
environment:
- TZ=Europe/Zurich
- KEEP_APP_RUNNING=1
restart: unless-stopped
volumes:
- "config:/config:rw"
- "downloads:/output:rw"
volumes:
config:
driver_opts:
type: "cifs"
device: "//172.16.2.230/docker/jdownloader2"
o: username=userxy,password=123456789,vers=3.0,uid=1000,gid=1000
downloads:
driver_opts:
type: "cifs"
device: "//172.16.2.230/downloads"
o: username=userxy,password=123456789,vers=3.0,uid=1000,gid=1000
Are you sure that support for symbolic links is enabled?
Are you mean the support for symlinks in ubuntu or in the docker container? In my other containers is this config working fine.
Are you mean the support for symlinks in ubuntu or in the docker container?
Ok in your case it's the mount created by Docker. Can you try to add the mfsymlinks
option to your compose file:
o: username=userxy,password=123456789,vers=3.0,uid=1000,gid=1000,mfsymlinks
In my other containers is this config working fine.
I guess that if no symbolic links are used, you won't see the problem. However, this container is creating a symbolic link under /config
.
Ok in your case it's the mount created by Docker. Can you try to add the
mfsymlinks
option to your compose file:o: username=userxy,password=123456789,vers=3.0,uid=1000,gid=1000,mfsymlinks
The mfsymlinks
option was the solution.
Thank you for your help
Thank you. I had the same problem with the config volume mounted on a cifs share The fix with mfsymlinks worked for me too
I receiv the following error since v23.01.1. The same error in v23.01.02. v22.12.2 is working fine.
Environment: