Docker - in CI/CD
Given this GitLab CI job snippet, what will be the output of the
docker ps command inside the job?
job:
image: docker:latest
services:
- docker:dind
script:
- docker info
- docker ps
