ontrack
ontrack copied to clipboard
Error entrypoint
Hi, i have this error woth docker-compose
Creating ontrack-db ... done Creating ontrack ... error
ERROR: for ontrack Cannot start service app: OCI runtime create failed: container_linux.go:346: starting container process caused "exec: "/ontrack/entrypoint.sh": permission denied": unknown
ERROR: for app Cannot start service app: OCI runtime create failed: container_linux.go:346: starting container process caused "exec: "/ontrack/entrypoint.sh": permission denied": unknown ERROR: Encountered errors while bringing up the project.
@salquier @luketainton Do y'all have any insight on this?
Try to add execution permission to the file :
chmod +x entrypoint.sh
and the rebuild the image
Or change the entrypoint (last line in Dokerfile) to ENTRYPOINT [ "/bin/sh", "/ontrack/entrypoint.sh" ]
@JamesAdams92150 did the suggestion work?
not work...