17 lines
254 B
YAML
17 lines
254 B
YAML
stages:
|
|
- build
|
|
|
|
before_script:
|
|
- docker info
|
|
|
|
build:
|
|
stage: build
|
|
image: docker:18.09.7-dind
|
|
services:
|
|
- docker:18.09.7-dind
|
|
variables:
|
|
DOCKER_DRIVER: overlay
|
|
DOCKER_HOST: tcp://localhost:2375/
|
|
script:
|
|
- echo "hello world"
|