Docker Plone with plone-backend fails with OCI runtime create failed

The following command (found in the plone-backend README) fails for me:
docker run -p 8080:8080 plone/plone-backend:6.0.0a1 start

I get this error

docker: Error response from daemon: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "start": executable file not found in $PATH: unknown.
ERRO[0003] error waiting for container: context canceled 

If I leave out the 'start'
docker run -p 8080:8080 plone/plone-backend:6.0.0a1

It works as expected.

1 Like

Must be a bug in the readme. @avoinea

docker pull plone/plone-backend:6.0.0a1

@avoinea the pull solved the problem. Seems to have been an older version of the 6.0.0a1 container?

Yes, you had an older version of plone/plone-backend:6.0.0a1 docker image locally.

2 Likes

Thank you @avoinea ... saved me a few hours :slight_smile:

2 Likes