Fix dind startup and set default version envs

This commit is contained in:
Brad Stein 2025-12-18 10:28:50 -03:00
parent ada9c64fa4
commit 8517891679

8
Jenkinsfile vendored
View File

@ -22,9 +22,9 @@ spec:
- name: DOCKER_TLS_CERTDIR - name: DOCKER_TLS_CERTDIR
value: "" value: ""
args: args:
- | - --mtu=1400
set -euo pipefail - --host=unix:///var/run/docker.sock
exec dockerd-entrypoint.sh --mtu=1400 - --host=tcp://0.0.0.0:2375
volumeMounts: volumeMounts:
- name: dind-storage - name: dind-storage
mountPath: /var/lib/docker mountPath: /var/lib/docker
@ -64,6 +64,8 @@ spec:
REGISTRY = 'registry.bstein.dev/bstein' REGISTRY = 'registry.bstein.dev/bstein'
FRONT_IMAGE = "${REGISTRY}/bstein-dev-home-frontend" FRONT_IMAGE = "${REGISTRY}/bstein-dev-home-frontend"
BACK_IMAGE = "${REGISTRY}/bstein-dev-home-backend" BACK_IMAGE = "${REGISTRY}/bstein-dev-home-backend"
VERSION_TAG = ''
SEMVER = ''
} }
options { options {
disableConcurrentBuilds() disableConcurrentBuilds()