We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got the following error when I tried to run alfresco-solr6/201707-GA :-/
ERROR: for cloud_solr6_1 Cannot start service solr6: oci runtime error: container_linux.go:262: starting container process caused "exec: \"./run.sh\": permission denied" ERROR: for solr6 Cannot start service solr6: oci runtime error: container_linux.go:262: starting container process caused "exec: \"./run.sh\": permission denied"
For me fixed by changing file keensoft/alfresco-docker-template/blob/master/alfresco-solr6/201707-GA/Dockerfile lines from:
keensoft/alfresco-docker-template/blob/master/alfresco-solr6/201707-GA/Dockerfile
RUN set -x && chown -RL solr:solr $SOLR_DIR
to:
RUN set -x && \ chown -RL solr:solr $SOLR_DIR && \ chmod +x $SOLR_DIR/run.sh
The text was updated successfully, but these errors were encountered:
Thanks for reporting, we'll change it!
Sorry, something went wrong.
Trying keensoft#1
85bc6f8
No branches or pull requests
I got the following error when I tried to run alfresco-solr6/201707-GA :-/
For me fixed by changing file
keensoft/alfresco-docker-template/blob/master/alfresco-solr6/201707-GA/Dockerfile
lines from:to:
The text was updated successfully, but these errors were encountered: