The .gitlab-ci.yml
file can accept the keyword: image, "to specify a Docker image that the job runs in."
I have encountered that the input entries of this keyword are sometimes enclosed with quotation marks (" ").
For example:
image: alpine
vs
image: "alpine"
GitLab Docs also contains both instances (sort of): quoted entry vs unquoted entry.
Could you please tell me whether there is any meaning of these quotation marks? If so, what is its meaning, and when should we use it?