I'am new to gitlab-ci. Probably i have problem with git-lab runner or on my gitlab-ci.yml file. Script on my image use whois command.
gitlab-ci.yml
image: docker:18 services: - docker:dind stages: - build - test before_script: - docker info build: stage: build script: - echo "build" - docker build -t image. test: stage: test script: - echo "test" - docker run -i image 185.33.37.131 test returns
$ docker run -i image 185.33.37.131 Unable to find image 'image:latest' locally docker: Error response from daemon: pull access denied for image, repository does not exist or may require 'docker login'. See 'docker run --help'. ERROR: Job failed: exit code 125 docker info returns suspect value
$ docker info Containers: 0 Running: 0 Paused: 0 Stopped: 0 Images: 0 . . . Successfully built 64f54ee594e7 Successfully tagged image:latest
imageand, at least according to the output, running an image taggedip_info. Is this the entire source code?