Add initial configuration files and Docker setup for Documize
Some checks failed
CI / ci (pull_request) Successful in 6s
Validate PR Title / validate (pull_request) Failing after 2s

This commit is contained in:
2026-01-04 21:11:40 +00:00
parent 295ac208f6
commit c66ea2b365
12 changed files with 234 additions and 6 deletions

18
.archive/.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,18 @@
stages:
- build
build:
stage: build
only:
- tags
image: docker:19.03.12
services:
- docker:19.03.12-dind
variables:
IMAGE_TAG: "$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG"
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $CI_REGISTRY_IMAGE:latest -t $IMAGE_TAG .
- docker build -t $IMAGE_TAG -t $CI_REGISTRY_IMAGE:latest .
- docker push $IMAGE_TAG
- docker push $CI_REGISTRY_IMAGE:latest