As we do cleanups, in 24.04
|
RUN mkdir -p /home/owncloud /var/www/owncloud /mnt/data/files /mnt/data/config /mnt/data/certs /mnt/data/sessions && \ |
Does anything speak against removing certs and sessions from mkdir. It is not used and imho just a confusing legacy. These folders show up in the mount point of the Docker volume.
Note that I have checked uploading a root certificate via occ (webui is broken for this) and it stores these files in <mount-point/files/files_external/uploads/
@DeepDiver1975
As we do cleanups, in 24.04
base/v24.04/Dockerfile.multiarch
Line 10 in cf68f08
Does anything speak against removing
certsandsessionsfrom mkdir. It is not used and imho just a confusing legacy. These folders show up in the mount point of the Docker volume.Note that I have checked uploading a root certificate via occ (webui is broken for this) and it stores these files in
<mount-point/files/files_external/uploads/@DeepDiver1975