Update file content

This commit is contained in:
gitea 2025-07-09 11:21:53 +08:00
parent 5ed9ead855
commit f0cceb3354
1 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
kind: pipeline
type: docker
name: ${serverName} # 服务名成可与jar包名保持一致
name: yd-yunxing-server # 服务名成可与jar包名保持一致
steps:
@ -55,14 +55,14 @@ steps:
- docker inspect --type=image yudao-module-infra >/dev/null 2>&1 && docker rmi yudao-module-infra || true
- cd /home/app/build
- cd gateway && docker build -t yudao-gateway:${APP_VERSION} -f ../Dockerfile .
- cd ../system && docker build -t yudao-module-system:${APP_VERSION} -f ../Dockerfile .
- cd ../infra && docker build -t yudao-module-infra:${APP_VERSION} -f ../Dockerfile .
- cd gateway && docker build -t yudao-gateway:v1.0 -f ../Dockerfile .
- cd ../system && docker build -t yudao-module-system:v1.0 -f ../Dockerfile .
- cd ../infra && docker build -t yudao-module-infra:v1.0 -f ../Dockerfile .
- name: deploy-with-compose
image: docker/compose:1.29.2
environment:
APP_VERSION: ${APP_VERSION}
APP_VERSION: v1.0
volumes:
- name: build-output
path: /home/app/build
@ -70,7 +70,7 @@ steps:
path: /var/run/docker.sock
commands:
- cd /home/app/build
- sed -i "s/${APP_VERSION}/${APP_VERSION}/g" docker-compose.yml
- sed -i "s/v1.0/v1.0/g" docker-compose.yml
- docker-compose -f docker-compose.yml up -d
volumes: