skip to Main Content

docker-compose in gitlab-ci: expose ports

I like to set up a gitlab repository and a gitlab-ci with docker-compose for integration tests. I finally managed to start some containers with docker-compose. image: docker/compose:1.29.2 variables: DOCKER_HOST: tcp://docker:2375/ DOCKER_HOSTNAME: myhost DOCKER_DRIVER: overlay2 DOCKER_TLS_CERTDIR: "" #TODO services: - name:…

VIEW QUESTION

Why Gitlab runner throws "Is the docker daemon running?"

I was hoping to get some assistance with Gitlab runner instance which throws "Cannot connect to the Docker daemon at tcp://localhost:2375. Is the docker daemon running?" my gitlab-ci.yml: image: docker:18.09-dind variables: DOCKER_HOST: tcp://localhost:2375 DOCKER_DRIVER: overlay2 stages: - build - test…

VIEW QUESTION
Back To Top
Search