Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm using gitlab ci, and sorry for the silly question, but why that code below doesn't work?

image: docker:stable

stages:
  - build

build-docker:
  stage: build
  script:
  - docker build -t my-image .

When I run a docker image of docker on my terminal I'm able to use these commands like docker build.

For the gitlab-ci above works, I've to add the services: docker:dind, but I don't really understand why, since I've an image that theoretically has the commands that I need.

Sry about my English, btw.

Thx in advance.

question from:https://stackoverflow.com/questions/65839561/why-docker-image-doesnt-run-docker-build

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...