In the intialization step this line is wrong:
as there is no comand /install inside the container.:
Error response from daemon: OCI runtime create failed: container_linux.go:344: starting container process caused "exec: \"/install\": stat /install: no such file or directory": unknown
It seems that it should be /init instead.
Also, the /init_certificates script fails with this error:
Privilege acquired
mkdir: cannot create directory '/opt/certificates': Permission denied
This can be fixed by replacing this line:
mkdir -p $certdir && sudo chown $IRODS_USER /opt/certificates
with:
sudo mkdir -p $certdir && sudo chown $IRODS_USER /opt/certificates
In the intialization step this line is wrong:
as there is no comand
/installinside the container.:It seems that it should be
/initinstead.Also, the
/init_certificatesscript fails with this error:This can be fixed by replacing this line:
with: