I am using testconatiners to start a container on a Jenkins instance. Testcontainers uses the Docker Engine API to start this container. However, when it tries to do so, sending a POST request to the /containers/create
endpoint, it receives the following 403 error:
{"message":"access denied:\nno access to Container Create, on collection {{SOME-UUID}}"}
Notably, it is able to pull images using the Docker HTTP V2 API, just not create containers (so far).
What could cause the above error message?
The people administrating the Jenkins instance don't know the cause, and I do not have access to the instance's configuration. If I knew why the error appears, I might be able to debug the issue further, but searching for the error yields almost no results, let alone any documentation.