+ Base job for deploy docker images to gitlab repos

This commit is contained in:
shockrah 2022-03-27 00:42:47 -07:00
parent 1fd47481c8
commit 988d598a19

9
ci/docker.yml Normal file
View File

@ -0,0 +1,9 @@
.docker-deploy:
image: docker:stable
services:
- docker:dind
only:
refs:
- master
before_script:
- echo "$CI_REGISTRY_PASSWORD" | docker login -u "$CI_REGISTRY_USER" --password-stdin "$CI_REGISTRY"