qloapps_docker
qloapps_docker copied to clipboard
Persistent volume - workaround?
Not sure if it is issue, but I am using Collify for docker image and when mounting persistent volume for /home/ folder to be able to preserve data for restarts there was issue for installation page due to Apache permission issues.
Forbidden You don't have permission to access this resource.
Found a workaround:
sudo docker run -it --rm -v <volume_id>:/home alpine sh
chmod -R 755 /home
Not sure if it is correct behavior but this worked.