Initial commit

This commit is contained in:
Никита Сычев
2026-01-03 23:09:01 +01:00
commit d0cb02102e
14 changed files with 389 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
stages:
- build
build-images:
stage: build
image: repo.nstart.local/nstart/docker-cli-buildx:1.0.0
services:
- name: repo.nstart.local/nstart/docker-dind-ca:1.0.0
alias: docker
command: ["--tls=false"]
variables:
DOCKER_HOST: tcp://docker:2375
DOCKER_TLS_CERTDIR: ""
parallel:
matrix:
- BAKE_TARGET:
- server
- backup
- proxy
script:
- echo $REGISTRY_PASSWORD | docker login -u $REGISTRY_USER --password-stdin $REGISTRY
- docker bake "$BAKE_TARGET" -f docker-bake.hcl --no-cache --push
only:
- master