Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hey!
I think that I’ve seen this in the past with the docker:dind service as it requires the GitLab Runner to run in privileged mode to function correctly.
As far as I remember this was necessary because Docker-in-Docker needs more permissions than usual to operate. So what you could do is in your GitLab Runner configuration to specify it to run in privileged mode by adding the --privileged flag during the runner registration or editing the runner’s configuration file:
sudo gitlab-runner register \
--non-interactive \
--url "https://gitlab.com" \
--token "<token>" \
--executor "docker" \
--docker-image "docker:stable" \
--description "Deployment Runner" \
--docker-privileged
Let me know how it goes!
- Bobby