Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Open ResEl
Outils
CI - DinD Runner
Commits
cfbdd08b
Commit
cfbdd08b
authored
Feb 04, 2021
by
Nicolas Vuillermet
Browse files
Mettre à jour .gitlab-ci.yml, Dockerfile files
parents
Pipeline
#7685
failed with stages
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
cfbdd08b
---
image
:
docker:stable
variables
:
IMAGE
:
$CI_REGISTRY_IMAGE
DOCKER_HOST
:
tcp://docker:2375/
DOCKER_DRIVER
:
overlay2
stages
:
-
build
-
test
-
push
services
:
-
docker:19.03.8-dind
Build docker image
:
stage
:
build
before_script
:
&before_script
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
script
:
-
docker build -t $IMAGE:$CI_COMMIT_SHA .
-
docker push $IMAGE:$CI_COMMIT_SHA
Push image
:
stage
:
push
before_script
:
*before_script
script
:
-
docker pull $IMAGE:$CI_COMMIT_SHA
-
docker tag $IMAGE:$CI_COMMIT_SHA $IMAGE:latest
-
docker push $IMAGE:latest
Dockerfile
0 → 100644
View file @
cfbdd08b
FROM
docker:19.03.8-dind
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment