gitlab-ci.yml & docker-in-docker (dind) & curl returns connection refused on shared runner
问题 I'm trying to create a simple GitLab CI where I spin up a container using docker-compose up then try to access it using curl and finally tear it down using docker-compose down. docker-compose up spins up perfectly fine and I can see the container up using docker ps -a, however when I curl, I get "connection refused". here is my gitlab-ci.yml image: docker services: - docker:dind before_script: - apk add --update python py-pip python-dev && pip install docker-compose - apk add --update curl &&