Docker - in CI/CD
You have this GitLab CI job configuration:
build:
image: docker:latest
script:
- docker build -t myapp .
services:
- docker:dind
The job fails with error: Cannot connect to the Docker daemon. What is the most likely fix?