Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
a72422f5d6
1 changed files with 19 additions and 0 deletions
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
# .gitlab-ci.yml
|
||||
|
||||
variables:
|
||||
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
||||
# Tell 'docker:dind' to enable TLS (recommended)
|
||||
# and generate certificates in the specified directory.
|
||||
DOCKER_TLS_CERTDIR: "/certs"
|
||||
|
||||
build-push-docker-image-job:
|
||||
# Specify a Docker image to run the job in.
|
||||
image: docker:latest
|
||||
# Specify an additional image 'docker:dind' ("Docker-in-Docker") that
|
||||
# will start up the Docker daemon when it is brought up by a runner.
|
||||
services:
|
||||
- docker:dind
|
||||
script:
|
||||
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||
- docker build -t $IMAGE_TAG .
|
||||
- docker push $IMAGE_TAG
|
Loading…
Reference in a new issue