20 lines
517 B
YAML
20 lines
517 B
YAML
variables:
|
|
DOCKER_DRIVER: overlay
|
|
CI_APPLICATION_REPOSITORY: "$CI_REGISTRY_IMAGE"
|
|
CI_APPLICATION_TAG: "$CI_COMMIT_SHA"
|
|
services:
|
|
- docker:stable-dind
|
|
stages:
|
|
- build
|
|
build:
|
|
stage: build
|
|
image: "registry.gitlab.com/gitlab-org/cluster-integration/auto-build-image/master:stable"
|
|
services:
|
|
- name: docker:stable-dind
|
|
command:
|
|
- dockerd
|
|
- "--host=unix:///var/run/docker.sock"
|
|
- "--host=tcp://0.0.0.0:2375"
|
|
- "--mtu=1450"
|
|
script:
|
|
- /build/build.sh
|