3rd can use shell?

This commit is contained in:
tuanvu
2026-02-16 18:51:50 +01:00
parent 28d90e66dd
commit 39ae214f78

View File

@@ -16,12 +16,6 @@ check_app_update:
image: debian:latest image: debian:latest
tags: tags:
- docker - docker
variables:
DOCKER_HOST: "tcp://docker:2375"
DOCKER_TLS_CERTDIR: ""
services:
- name: docker:dind
command: ["--tls=false"]
script: script:
- apt-get update - apt-get update
- apt-get install -y git - apt-get install -y git
@@ -68,16 +62,8 @@ build_frontend:
# Build & Push Docker frontend # Build & Push Docker frontend
build_docker_frontend: build_docker_frontend:
stage: package stage: package
image: docker:latest
services:
- name: docker:dind
command: ["--tls=false"]
variables:
DOCKER_HOST: tcp://docker:2375
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
tags: tags:
- docker - shell
dependencies: dependencies:
- check_app_update - check_app_update
- build_frontend - build_frontend
@@ -91,7 +77,6 @@ build_docker_frontend:
- docker build -t "$IMAGE_FRONTEND" doodlestudent/front - docker build -t "$IMAGE_FRONTEND" doodlestudent/front
- docker push "$IMAGE_FRONTEND" - docker push "$IMAGE_FRONTEND"
- docker logout - docker logout
# Deploy to Production # Deploy to Production
deploy_production: deploy_production:
stage: deploy stage: deploy