ci: remove unused Docker variables and services

Removes unnecessary Docker variables and services from the  
GitLab CI configuration to simplify the build process. This  
streamlines the pipeline and eliminates potential conflicts  
with Docker settings.
This commit is contained in:
2024-12-12 10:12:44 +01:00
parent 51aa5c6468
commit 813070bd1a
-5
View File
@@ -5,15 +5,10 @@ stages:
- build - build
- deploy - deploy
variables:
DOCKER_HOST: tcp://docker:2375/
image: buildtool/build-tools:${BUILDTOOLS_VERSION} image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build: build:
stage: build stage: build
services:
- docker:${DOCKER_DIND_VERSION}
script: script:
- build - build
- push - push